Started by upstream project "Msrc_uB__prism_strands__ubuntu_bionic__source" build number 1 originally caused by: Started by upstream project "Mrel_trigger-jobs" build number 9307 originally caused by: Started by timer Building remotely on build client 4 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary [ssh-agent] Looking for ssh-agent implementation... [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) $ ssh-agent SSH_AUTH_SOCK=/tmp/ssh-wwyUp4ROwmfY/agent.26467 SSH_AGENT_PID=26469 [ssh-agent] Started. $ ssh-add /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary@tmp/private_key_3166411346487025306.key Identity added: /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary@tmp/private_key_3166411346487025306.key (/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary@tmp/private_key_3166411346487025306.key) [ssh-agent] Using credentials jenkins-slave # BEGIN SECTION: Check upstream projects Verify that no recursive upstream project is broken: - 'Msrc_uB__prism_strands__ubuntu_bionic__source' build '1' has result 'SUCCESS' All recursive upstream projects are (un)stable # END SECTION # BEGIN SECTION: Check free disk space Usable disk space = 53745598464 bytes Free space threshold = 5368709120 bytes # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson8531135468984023228.sh + echo # BEGIN SECTION: docker version # BEGIN SECTION: docker version + docker version Client: Version: 18.06.3-ce API version: 1.38 Go version: go1.10.3 Git commit: d7080c1 Built: Wed Feb 20 02:27:13 2019 OS/Arch: linux/amd64 Experimental: false Server: Engine: Version: 18.06.3-ce API version: 1.38 (minimum version 1.12) Go version: go1.10.3 Git commit: d7080c1 Built: Wed Feb 20 02:25:38 2019 OS/Arch: linux/amd64 Experimental: false + echo # END SECTION # END SECTION + echo # BEGIN SECTION: docker info # BEGIN SECTION: docker info + docker info Containers: 1 Running: 1 Paused: 0 Stopped: 0 Images: 1169 Server Version: 18.06.3-ce Storage Driver: overlay2 Backing Filesystem: extfs Supports d_type: true Native Overlay Diff: true Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge host macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog Swarm: inactive Runtimes: runc Default Runtime: runc Init Binary: docker-init containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e runc version: a592beb5bc4c4092b1b1bac971afed27687340c5 init version: fec3683 Security Options: apparmor Kernel Version: 4.4.0-148-generic Operating System: Ubuntu 14.04.6 LTS OSType: linux Architecture: x86_64 CPUs: 2 Total Memory: 3.859GiB Name: lcas-buildfarm-slave-3 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE Docker Root Dir: /var/lib/docker Debug Mode (client): false Debug Mode (server): false Registry: https://index.docker.io/v1/ Labels: Experimental: false Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false WARNING: No swap limit support + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson3435644225201558879.sh + echo # BEGIN SECTION: Check docker status # BEGIN SECTION: Check docker status + echo Testing trivial docker invocation... Testing trivial docker invocation... + docker run --rm ubuntu:bionic true + echo 'docker run' returned 0 'docker run' returned 0 docker seems operational, continuing [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson2653489808223387134.sh + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson1128857015534106281.sh + echo # BEGIN SECTION: Embed wrapper scripts # BEGIN SECTION: Embed wrapper scripts + rm -fr wrapper_scripts + mkdir wrapper_scripts + printf #!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an "AS IS" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert "Command '%%s' not implemented" %% command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print("Reinvoke 'git %%s' (%%d/%%d) after sleeping %%s seconds" %%\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print("Invoking '%%s'" %% ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main()) + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson8215523251670534926.sh + echo # BEGIN SECTION: Clone ros_buildfarm # BEGIN SECTION: Clone ros_buildfarm + rm -fr ros_buildfarm + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' Cloning into 'ros_buildfarm'... + git -C ros_buildfarm --no-pager log -n 1 commit 769490a3a30c62410fc0c633da8552c554b6c221 Author: Marc Hanheide Date: Sun Nov 24 10:49:33 2019 +0000 added support for flat repos like NVIDIA + rm -fr ros_buildfarm/.git + rm -fr ros_buildfarm/doc + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson867302498748050941.sh + echo # BEGIN SECTION: Write PGP repository keys # BEGIN SECTION: Write PGP repository keys + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/* + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.11 (GNU/Linux) mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== =nFcN -----END PGP PUBLIC KEY BLOCK----- + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: SKS 1.1.6 Comment: Hostname: keyserver.ubuntu.com mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd =4Ofr -----END PGP PUBLIC KEY BLOCK----- + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1 mQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi QlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t PLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d 79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF vuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV sKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9 /SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx CyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf jqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF HQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r CGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB tCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223 hQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW rYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR 8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm 2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y 6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2 S32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG 8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r 1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv kR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb b8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7 /WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf k52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg== =0nKc -----END PGP PUBLIC KEY BLOCK----- + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson1038053555066409751.sh + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker + sleep 1 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 26979 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid + echo # BEGIN SECTION: Generate Dockerfile - binarydeb task # BEGIN SECTION: Generate Dockerfile - binarydeb task + export TZ=GMT+00 + export PYTHONPATH=/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm: + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/release/run_binarydeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic prism_strands ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ --distribution-repository-key-files /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/1.key /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/2.key --target-repository http://10.210.9.154/ubuntu/building --binarydeb-dir /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker --env-vars --append-timestamp Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/0.key) http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/1.key) http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ (/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/keys/2.key) Generating Dockerfile '/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker/Dockerfile': # generated from release/binarydeb_create_task.Dockerfile.em FROM ubuntu:bionic VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -l -m buildfarm RUN mkdir /tmp/keys RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi\nQlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t\nPLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d\n79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF\nvuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV\nsKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9\n/SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx\nCyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf\njqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF\nHQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r\nCGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB\ntCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223\nhQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW\nrYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR\n8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm\n2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y\n6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2\nS32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG\n8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r\n1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv\nkR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb\nb8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7\n/WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf\nk52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg==\n=0nKc\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/2.key && apt-key add /tmp/keys/2.key RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ / | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2020-02-13 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml # always invalidate to actually have the latest apt repo state RUN echo "2020-02-13 14:05:42 +0000" RUN python3 -u /tmp/wrapper_scripts/apt.py update USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic prism_strands --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic prism_strands --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic prism_strands ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key /tmp/keys/2.key --binarydeb-dir /tmp/binarydeb --env-vars --dockerfile-dir /tmp/docker_build_binarydeb"] + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Build Dockerfile - binarydeb task # BEGIN SECTION: Build Dockerfile - binarydeb task + cd /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic Check docker base image for updates: docker pull ubuntu:bionic bionic: Pulling from library/ubuntu Digest: sha256:8d31dad0c58f552e890d68bbfb735588b6b820a46e459672d96e585871acc110 Status: Image is up to date for ubuntu:bionic + docker build --force-rm -t binarydeb_task_generation.melodic_ubuntu_bionic_amd64_prism_strands . Sending build context to Docker daemon 23.04kB Step 1/30 : FROM ubuntu:bionic ---> ccc6e87d482b Step 2/30 : VOLUME ["/var/cache/apt/archives"] ---> Using cache ---> e0e0cfc26e8c Step 3/30 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 2bad8f033f22 Step 4/30 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> c4724c79288a Step 5/30 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> ca8d43874a4f Step 6/30 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 581b47f289b4 Step 7/30 : ENV LANG en_US.UTF-8 ---> Using cache ---> 8a115e884a42 Step 8/30 : ENV TZ GMT+00 ---> Using cache ---> ba7ad2d61b1b Step 9/30 : RUN useradd -u 1002 -l -m buildfarm ---> Using cache ---> 765e420be9e7 Step 10/30 : RUN mkdir /tmp/keys ---> Using cache ---> 533046a46dea Step 11/30 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 7793979909f5 Step 12/30 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> 52b0ccf958c6 Step 13/30 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> c575d85d16be Step 14/30 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi\nQlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t\nPLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d\n79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF\nvuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV\nsKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9\n/SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx\nCyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf\njqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF\nHQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r\nCGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB\ntCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223\nhQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW\nrYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR\n8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm\n2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y\n6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2\nS32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG\n8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r\n1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv\nkR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb\nb8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7\n/WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf\nk52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg==\n=0nKc\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/2.key && apt-key add /tmp/keys/2.key ---> Using cache ---> 18cd8cf7deea Step 15/30 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 6305d7b3fc21 Step 16/30 : RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 40e5bc848108 Step 17/30 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> de0a5607a46a Step 18/30 : RUN echo deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ / | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 89155fc78b5e Step 19/30 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) ---> Using cache ---> a3577140faaa Step 20/30 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> 635b25291dfb Step 21/30 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Using cache ---> 2edfdabf1655 Step 22/30 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> 69cb0920f1c2 Step 23/30 : RUN echo "2020-02-13 (+0000)" ---> Running in 07e73bbcdf78 2020-02-13 (+0000) Removing intermediate container 07e73bbcdf78 ---> f7ee257830cc Step 24/30 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Running in 093a2e2e398e Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Get:8 http://packages.ros.org/ros/ubuntu bionic InRelease [4,669 B] Get:9 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release [564 B] Get:10 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release.gpg [833 B] Get:11 http://10.210.9.154/ubuntu/building bionic/main Sources [105 kB] Get:12 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [136 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic/multiverse Sources [216 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Sources [6,199 B] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,344 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,104 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-security/multiverse Sources [3,226 B] Get:18 http://archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [7,064 B] Get:19 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [623 kB] Get:20 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Packages [132 kB] Fetched 4,027 kB in 2s (2,007 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal python3.6 python3.6-minimal xz-utils Suggested packages: python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils binfmt-support The following NEW packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3 python3-minimal python3.6 python3.6-minimal xz-utils 0 upgraded, 14 newly installed, 0 to remove and 18 not upgraded. Need to get 4,687 kB of archives. After this operation, 28.3 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04 [533 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04 [1,610 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04 [1,709 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04 [203 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.3 [184 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.3 [68.7 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.3 [22.1 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 4,687 kB in 0s (27.6 MB/s) Selecting previously unselected package libpython3.6-minimal:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5006 files and directories currently installed.) Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04_amd64.deb ... Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package python3.6-minimal. Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04_amd64.deb ... Unpacking python3.6-minimal (3.6.9-1~18.04) ... Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04) ... Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Setting up python3.6-minimal (3.6.9-1~18.04) ... Selecting previously unselected package python3-minimal. (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 ... 5253 files and directories currently installed.) Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ... Unpacking python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package mime-support. Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ... Unpacking mime-support (3.60ubuntu1) ... Selecting previously unselected package libmpdec2:amd64. Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ... Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... Selecting previously unselected package libpython3.6-stdlib:amd64. Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04_amd64.deb ... Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04) ... Selecting previously unselected package python3.6. Preparing to unpack .../4-python3.6_3.6.9-1~18.04_amd64.deb ... Unpacking python3.6 (3.6.9-1~18.04) ... Selecting previously unselected package libpython3-stdlib:amd64. Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package python3. (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 ... 5683 files and directories currently installed.) Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ... Unpacking python3 (3.6.7-1~18.04) ... Selecting previously unselected package libmagic-mgc. Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.3_amd64.deb ... Unpacking libmagic-mgc (1:5.32-2ubuntu0.3) ... Selecting previously unselected package libmagic1:amd64. Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.3_amd64.deb ... Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.3) ... Selecting previously unselected package file. Preparing to unpack .../file_1%3a5.32-2ubuntu0.3_amd64.deb ... Unpacking file (1:5.32-2ubuntu0.3) ... Selecting previously unselected package xz-utils. Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ... Unpacking xz-utils (5.2.2-1.3) ... Setting up mime-support (3.60ubuntu1) ... Setting up libmagic-mgc (1:5.32-2ubuntu0.3) ... Setting up libmagic1:amd64 (1:5.32-2ubuntu0.3) ... Setting up xz-utils (5.2.2-1.3) ... update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04) ... Setting up python3.6 (3.6.9-1~18.04) ... Setting up file (1:5.32-2ubuntu0.3) ... Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3 (3.6.7-1~18.04) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Removing intermediate container 093a2e2e398e ---> 9943a35680aa Step 25/30 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml ---> Running in fd8be4121d6c Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml' Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: at binutils binutils-common binutils-x86-64-linux-gnu bsdmainutils build-essential ca-certificates cpp cpp-7 curl dctrl-tools diffstat distro-info-data docutils-common dput fakeroot g++ g++-7 gcc gcc-7 gcc-7-base gettext gettext-base git git-man groff-base intltool-debian iso-codes krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapt-inst2.0 libapt-pkg-perl libarchive-zip-perl libasan4 libatomic1 libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libbinutils libbsd0 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl libcgi-pm-perl libcilkrts5 libclass-accessor-perl libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcroco3 libcurl3-gnutls libcurl4 libdata-dump-perl libdata-optlist-perl libdevel-callchecker-perl libdevel-globaldestruction-perl libdigest-hmac-perl libdistro-info-perl libdpkg-perl libdynaloader-functions-perl libedit2 libemail-valid-perl libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-fcntllock-perl libfile-homedir-perl libfile-listing-perl libfile-which-perl libfont-afm-perl libfreetype6 libgcc-7-dev libgdbm-compat4 libgdbm5 libgetopt-long-descriptive-perl libgit-wrapper-perl libglib2.0-0 libglib2.0-data libgomp1 libgpgme11 libgssapi-krb5-2 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libicu60 libimport-into-perl libio-html-perl libio-pty-perl libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libipc-run-perl libipc-system-simple-perl libisl19 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 liblist-compare-perl liblist-moreutils-perl liblocale-gettext-perl liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libmpx2 libnamespace-clean-perl libnet-dns-perl libnet-domain-tld-perl libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnghttp2-14 libnumber-compare-perl libnumber-range-perl libpackage-stash-perl libpackage-stash-xs-perl libpaper-utils libpaper1 libparams-classify-perl libparams-util-perl libparams-validate-perl libparse-debianchangelog-perl libpath-iterator-rule-perl libpath-tiny-perl libperl5.26 libperlio-gzip-perl libpipeline1 libpng16-16 libpod-constants-perl libpsl5 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libquadmath0 libregexp-pattern-license-perl librole-tiny-perl librtmp1 libsocket6-perl libsort-key-perl libsort-versions-perl libssl1.0.0 libstdc++-7-dev libstrictures-perl libstring-copyright-perl libstring-escape-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl libtext-glob-perl libtext-levenshtein-perl libtiff5 libtimedate-perl libtry-tiny-perl libtsan0 libubsan0 libunicode-utf8-perl libunwind8 liburi-perl libvariable-magic-perl libwebp6 libwebpdemux2 libwebpmux3 libwww-perl libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2 libxmuu1 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian linux-libc-dev lsb-release make man-db manpages manpages-dev multiarch-support netbase openssh-client openssl patch patchutils perl perl-modules-5.26 perl-openssl-defaults publicsuffix python python-apt-common python-minimal python2.7 python2.7-minimal python3-certifi python3-chardet python3-dateutil python3-debian python3-distutils python3-docutils python3-gpg python3-idna python3-lib2to3 python3-magic python3-olefile python3-pil python3-pkg-resources python3-pygments python3-pyparsing python3-requests python3-roman python3-rospkg-modules python3-setuptools python3-six python3-unidiff python3-urllib3 python3-xdg sgml-base shared-mime-info strace t1utils tzdata ucf unzip wdiff xauth xdg-user-dirs xml-core Suggested packages: default-mta | mail-transport-agent binutils-doc wamerican | wordlist whois vacation cpp-doc gcc-7-locales debtags adequate autopkgtest bls-standalone bsd-mailx | mailx check-all-the-things cvs-buildpackage devscripts-el diffoscope disorderfs dose-extra duck faketime gnuplot how-can-i-help libfile-desktopentry-perl libnet-smtps-perl libterm-size-perl libyaml-syck-perl mozilla-devscripts mutt piuparts postgresql-client quilt ratt reprotest svn-buildpackage w3m debian-keyring equivs libsoap-lite-perl python3-paramiko mini-dinstall rsync g++-multilib g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg gettext-doc autopoint libasprintf-dev libgettextpo-dev git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn groff isoquery libgssapi-perl glibc-doc bzr gdbm-l10n krb5-doc krb5-user liblcms2-utils libcrypt-ssleay-perl libscalar-number-perl libhtml-template-perl libstdc++-7-doc libbareword-filehandles-perl libindirect-perl libmultidimensional-perl libauthen-ntlm-perl bash-completion binutils-multiarch libtext-template-perl lsb make-doc apparmor www-browser keychain libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl python-doc python-tk python2.7-doc binfmt-support python3-apt-dbg python-apt-doc docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg ttf-bitstream-vera python-pyparsing-doc python3-cryptography python3-openssl python3-socks python-setuptools-doc sgml-base-doc zip wdiff-doc debhelper The following NEW packages will be installed: at binutils binutils-common binutils-x86-64-linux-gnu bsdmainutils build-essential ca-certificates cpp cpp-7 curl dctrl-tools devscripts diffstat distro-info-data docutils-common dpkg-dev dput fakeroot g++ g++-7 gcc gcc-7 gcc-7-base gettext gettext-base git git-man groff-base intltool-debian iso-codes krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapt-inst2.0 libapt-pkg-perl libarchive-zip-perl libasan4 libatomic1 libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libbinutils libbsd0 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl libcgi-pm-perl libcilkrts5 libclass-accessor-perl libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcroco3 libcurl3-gnutls libcurl4 libdata-dump-perl libdata-optlist-perl libdevel-callchecker-perl libdevel-globaldestruction-perl libdigest-hmac-perl libdistro-info-perl libdpkg-perl libdynaloader-functions-perl libedit2 libemail-valid-perl libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-fcntllock-perl libfile-homedir-perl libfile-listing-perl libfile-which-perl libfont-afm-perl libfreetype6 libgcc-7-dev libgdbm-compat4 libgdbm5 libgetopt-long-descriptive-perl libgit-wrapper-perl libglib2.0-0 libglib2.0-data libgomp1 libgpgme11 libgssapi-krb5-2 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libicu60 libimport-into-perl libio-html-perl libio-pty-perl libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libipc-run-perl libipc-system-simple-perl libisl19 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 liblist-compare-perl liblist-moreutils-perl liblocale-gettext-perl liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libmpx2 libnamespace-clean-perl libnet-dns-perl libnet-domain-tld-perl libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnghttp2-14 libnumber-compare-perl libnumber-range-perl libpackage-stash-perl libpackage-stash-xs-perl libpaper-utils libpaper1 libparams-classify-perl libparams-util-perl libparams-validate-perl libparse-debianchangelog-perl libpath-iterator-rule-perl libpath-tiny-perl libperl5.26 libperlio-gzip-perl libpipeline1 libpng16-16 libpod-constants-perl libpsl5 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libquadmath0 libregexp-pattern-license-perl librole-tiny-perl librtmp1 libsocket6-perl libsort-key-perl libsort-versions-perl libssl1.0.0 libstdc++-7-dev libstrictures-perl libstring-copyright-perl libstring-escape-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl libtext-glob-perl libtext-levenshtein-perl libtiff5 libtimedate-perl libtry-tiny-perl libtsan0 libubsan0 libunicode-utf8-perl libunwind8 liburi-perl libvariable-magic-perl libwebp6 libwebpdemux2 libwebpmux3 libwww-perl libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2 libxmuu1 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian linux-libc-dev lsb-release make man-db manpages manpages-dev multiarch-support netbase openssh-client openssl patch patchutils perl perl-modules-5.26 perl-openssl-defaults publicsuffix python python-apt-common python-minimal python2.7 python2.7-minimal python3-apt python3-catkin-pkg-modules python3-certifi python3-chardet python3-dateutil python3-debian python3-distutils python3-docutils python3-empy python3-gpg python3-idna python3-lib2to3 python3-magic python3-olefile python3-pil python3-pkg-resources python3-pygments python3-pyparsing python3-requests python3-roman python3-rosdistro-modules python3-rospkg-modules python3-setuptools python3-six python3-unidiff python3-urllib3 python3-xdg python3-yaml sgml-base shared-mime-info strace t1utils tzdata ucf unzip wdiff xauth xdg-user-dirs xml-core 0 upgraded, 276 newly installed, 0 to remove and 18 not upgraded. Need to get 87.6 MB of archives. After this operation, 399 MB of additional disk space will be used. Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-catkin-pkg-modules all 0.4.16-1 [41.7 kB] Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-rospkg-modules all 1.2.3-1 [23.9 kB] Get:3 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-rosdistro-modules all 0.8.0-1 [31.0 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 multiarch-support amd64 2.27-3ubuntu1 [6,916 B] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau6 amd64 1:1.0.8-1 [8,376 B] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.2 [113 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.2 [569 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.3 [110 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.3 [2,763 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B] Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.3 [3,527 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.3 [201 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04 [335 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04 [1,294 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04 [1,915 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04 [248 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.5 [613 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 ca-certificates all 20180409 [151 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 distro-info-data all 0.37ubuntu0.6 [4,572 B] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 less amd64 487-0.1 [112 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-inst2.0 amd64 1.6.12 [55.6 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.4 [1,169 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.4 [4,496 B] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu60 amd64 60.2-3ubuntu3 [8,054 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-0-2 amd64 0.1.7-2ubuntu3 [47.2 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 lsb-release all 9.20170808ubuntu1 [11.0 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-yaml amd64 3.12-1build2 [109 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2019c-0ubuntu0.18.04 [190 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 iso-codes all 3.79-1 [2,565 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.1 [13.5 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.1 [30.9 kB] Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.1 [85.6 kB] Get:54 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.1 [279 kB] Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.1 [122 kB] Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] Get:58 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] Get:59 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.0.0 amd64 1.0.2n-1ubuntu5.3 [1,088 kB] Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmuu1 amd64 2:1.1.2-2 [9,674 B] Get:61 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssh-client amd64 1:7.6p1-4ubuntu0.3 [614 kB] Get:63 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-apt-common all 1.6.5ubuntu0.2 [17.0 kB] Get:65 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-apt amd64 1.6.5ubuntu0.2 [149 kB] Get:66 http://archive.ubuntu.com/ubuntu bionic/main amd64 libunwind8 amd64 1.2.1-8 [47.5 kB] Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 strace amd64 4.21-1ubuntu1 [333 kB] Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 xauth amd64 1:1.0.10-1 [24.6 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic/main amd64 at amd64 3.1.20-3.1ubuntu2 [39.5 kB] Get:70 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.2 [193 kB] Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.2 [503 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.2 [1,856 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.2 [3,396 B] Get:74 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc-dev-bin amd64 2.27-3ubuntu1 [71.8 kB] Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-76.86 [999 kB] Get:76 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc6-dev amd64 2.27-3ubuntu1 [2,587 kB] Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.4.0-1ubuntu1~18.04.1 [18.9 kB] Get:78 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB] Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB] Get:80 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB] Get:81 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.4.0-1ubuntu1~18.04.1 [6,742 kB] Get:82 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB] Get:83 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.3.0-6ubuntu1~18.04.1 [47.4 kB] Get:84 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.3.0-6ubuntu1~18.04.1 [76.4 kB] Get:85 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.3.0-6ubuntu1~18.04.1 [28.0 kB] Get:86 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.3.0-6ubuntu1~18.04.1 [9,184 B] Get:87 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.4.0-1ubuntu1~18.04.1 [359 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB] Get:89 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.3.0-6ubuntu1~18.04.1 [288 kB] Get:90 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.4.0-1ubuntu1~18.04.1 [126 kB] Get:91 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.4.0-1ubuntu1~18.04.1 [42.5 kB] Get:92 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.3.0-6ubuntu1~18.04.1 [11.6 kB] Get:93 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB] Get:94 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [2,381 kB] Get:95 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.4.0-1ubuntu1~18.04.1 [7,463 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B] Get:97 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [1,468 kB] Get:98 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.4.0-1ubuntu1~18.04.1 [7,574 kB] Get:99 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B] Get:100 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] Get:102 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] Get:104 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B] Get:105 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.8 [214 kB] Get:108 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.8 [159 kB] Get:109 http://archive.ubuntu.com/ubuntu bionic/main amd64 dctrl-tools amd64 2.24-2build1 [60.9 kB] Get:110 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-which-perl all 1.21-1 [11.8 kB] Get:111 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-homedir-perl all 1.002-1 [37.1 kB] Get:112 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 devscripts amd64 2.17.12ubuntu1.1 [870 kB] Get:113 http://archive.ubuntu.com/ubuntu bionic/main amd64 diffstat amd64 1.61-1build1 [24.1 kB] Get:114 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] Get:115 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] Get:116 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pkg-resources all 39.0.1-2 [98.8 kB] Get:117 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-chardet all 3.0.4-1 [80.3 kB] Get:118 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-six all 1.11.0-2 [11.4 kB] Get:119 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-debian all 0.1.32 [65.4 kB] Get:120 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgpgme11 amd64 1.10.0-1ubuntu2 [111 kB] Get:121 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-gpg amd64 1.10.0-1ubuntu2 [150 kB] Get:122 http://archive.ubuntu.com/ubuntu bionic/main amd64 dput all 1.0.1ubuntu1 [42.7 kB] Get:123 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] Get:124 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] Get:125 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] Get:126 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] Get:127 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl3-gnutls amd64 7.58.0-2ubuntu3.8 [213 kB] Get:128 http://archive.ubuntu.com/ubuntu bionic/main amd64 liberror-perl all 0.17025-1 [22.8 kB] Get:129 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git-man all 1:2.17.1-1ubuntu0.5 [803 kB] Get:130 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git amd64 1:2.17.1-1ubuntu0.5 [3,912 kB] Get:131 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] Get:132 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] Get:133 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] Get:134 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] Get:135 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB] Get:136 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] Get:137 http://archive.ubuntu.com/ubuntu bionic/main amd64 libb-hooks-op-check-perl amd64 0.22-1 [10.1 kB] Get:138 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdynaloader-functions-perl all 0.003-1 [11.9 kB] Get:139 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdevel-callchecker-perl amd64 0.007-2build1 [14.1 kB] Get:140 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-classify-perl amd64 0.015-1 [21.2 kB] Get:141 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmodule-runtime-perl all 0.016-1 [16.2 kB] Get:142 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB] Get:143 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmodule-implementation-perl all 0.09-1 [12.2 kB] Get:144 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-exporter-progressive-perl all 0.001013-1 [6,784 B] Get:145 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvariable-magic-perl amd64 0.62-1 [34.5 kB] Get:146 http://archive.ubuntu.com/ubuntu bionic/main amd64 libb-hooks-endofscope-perl all 0.21-1 [14.7 kB] Get:147 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tagset-perl all 3.20-3 [12.1 kB] Get:148 http://archive.ubuntu.com/ubuntu bionic/main amd64 liburi-perl all 1.73-1 [77.2 kB] Get:149 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-parser-perl amd64 3.72-3build1 [85.9 kB] Get:150 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcgi-pm-perl all 4.38-1 [185 kB] Get:151 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfcgi-perl amd64 0.78-2build1 [32.8 kB] Get:152 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcgi-fast-perl all 1:2.13-1 [9,940 B] Get:153 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-name-perl amd64 0.21-1build1 [11.6 kB] Get:154 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-accessor-perl all 0.51-1 [21.2 kB] Get:155 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-method-modifiers-perl all 2.12-1 [15.7 kB] Get:156 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-xsaccessor-perl amd64 1.19-2build8 [32.8 kB] Get:157 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclone-perl amd64 0.39-1 [10.4 kB] Get:158 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB] Get:159 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-util-perl amd64 1.07-3build3 [19.6 kB] Get:160 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-install-perl all 0.928-1 [10.5 kB] Get:161 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-optlist-perl all 0.110-1 [9,956 B] Get:162 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdevel-globaldestruction-perl all 0.14-1 [6,752 B] Get:163 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdigest-hmac-perl all 1.03+dfsg-1 [12.1 kB] Get:164 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdistro-info-perl all 0.18ubuntu0.18.04.1 [4,892 B] Get:165 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] Get:166 http://archive.ubuntu.com/ubuntu bionic/main amd64 perl-openssl-defaults amd64 3build1 [7,012 B] Get:167 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnet-ssleay-perl amd64 1.84-1ubuntu0.2 [283 kB] Get:168 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libio-socket-ssl-perl all 2.060-3~ubuntu18.04.1 [173 kB] Get:169 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5,948 B] Get:170 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmailtools-perl all 2.18-1 [74.0 kB] Get:171 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsocket6-perl amd64 0.27-1build2 [23.0 kB] Get:172 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-socket-inet6-perl all 2.72-2 [13.8 kB] Get:173 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-ip-perl all 1.26-1 [31.5 kB] Get:174 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-dns-perl all 1.10-2 [335 kB] Get:175 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-domain-tld-perl all 1.75-1 [29.1 kB] Get:176 http://archive.ubuntu.com/ubuntu bionic/main amd64 libemail-valid-perl all 1.202-1 [16.3 kB] Get:177 http://archive.ubuntu.com/ubuntu bionic/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB] Get:178 http://archive.ubuntu.com/ubuntu bionic/main amd64 libexporter-tiny-perl all 1.000000-2 [34.6 kB] Get:179 http://archive.ubuntu.com/ubuntu bionic/main amd64 libipc-system-simple-perl all 1.25-4 [22.5 kB] Get:180 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-basedir-perl all 0.07-1 [16.9 kB] Get:181 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-chdir-perl all 0.1008-1 [11.7 kB] Get:182 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] Get:183 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-date-perl all 6.02-1 [10.4 kB] Get:184 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-listing-perl all 6.04-1 [9,774 B] Get:185 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB] Get:186 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB] Get:187 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-stringy-perl all 2.111-2 [60.6 kB] Get:188 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-validate-perl amd64 1.29-1 [52.3 kB] Get:189 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-exporter-perl all 0.987-1 [44.9 kB] Get:190 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgetopt-long-descriptive-perl all 0.102-1 [24.4 kB] Get:191 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsort-versions-perl all 1.62-1 [9,294 B] Get:192 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgit-wrapper-perl all 0.047-1 [29.6 kB] Get:193 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-html-perl all 1.001-1 [14.9 kB] Get:194 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-mediatypes-perl all 6.02-1 [21.7 kB] Get:195 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-message-perl all 6.14-1 [72.1 kB] Get:196 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-form-perl all 6.03-1 [23.5 kB] Get:197 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tree-perl all 5.07-1 [200 kB] Get:198 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB] Get:199 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-cookies-perl all 6.04-1 [17.2 kB] Get:200 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-daemon-perl all 6.01-1 [17.0 kB] Get:201 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-negotiate-perl all 6.00-2 [13.4 kB] Get:202 http://archive.ubuntu.com/ubuntu bionic/main amd64 libimport-into-perl all 1.002005-1 [11.0 kB] Get:203 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-pty-perl amd64 1:1.08-1.1build4 [30.1 kB] Get:204 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-string-perl all 1.08-3 [11.1 kB] Get:205 http://archive.ubuntu.com/ubuntu bionic/main amd64 libipc-run-perl all 0.96-1 [89.9 kB] Get:206 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] Get:207 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] Get:208 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblist-compare-perl all 0.53-1 [65.6 kB] Get:209 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblist-moreutils-perl amd64 0.416-1build3 [55.5 kB] Get:210 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-http-perl all 6.17-1 [22.7 kB] Get:211 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwww-robotrules-perl all 6.01-1 [14.1 kB] Get:212 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwww-perl all 6.31-1ubuntu0.1 [137 kB] Get:213 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-protocol-https-perl all 6.07-2 [8,284 B] Get:214 http://archive.ubuntu.com/ubuntu bionic/main amd64 librole-tiny-perl all 2.000006-1 [15.9 kB] Get:215 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstrictures-perl all 2.000003-1 [16.1 kB] Get:216 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-quote-perl all 2.005000-1 [17.0 kB] Get:217 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmoo-perl all 2.003004-1 [45.5 kB] Get:218 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpackage-stash-perl all 0.37-1 [18.3 kB] Get:219 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-identify-perl amd64 0.14-1 [10.5 kB] Get:220 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnamespace-clean-perl all 0.27-1 [13.6 kB] Get:221 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnumber-compare-perl all 0.03-1 [7,318 B] Get:222 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnumber-range-perl all 0.12-1 [8,556 B] Get:223 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpackage-stash-xs-perl amd64 0.28-3build2 [16.4 kB] Get:224 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] Get:225 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] Get:226 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparse-debianchangelog-perl all 1.2.0-12 [49.5 kB] Get:227 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtext-glob-perl all 0.10-1 [7,554 B] Get:228 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpath-iterator-rule-perl all 1.009-1 [49.1 kB] Get:229 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpath-tiny-perl all 0.104-1 [55.3 kB] Get:230 http://archive.ubuntu.com/ubuntu bionic/main amd64 libperlio-gzip-perl amd64 0.19-1build3 [14.4 kB] Get:231 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpod-constants-perl all 0.19-1 [16.0 kB] Get:232 http://archive.ubuntu.com/ubuntu bionic/main amd64 libregexp-pattern-license-perl all 3.0.31-3 [14.7 kB] Get:233 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsort-key-perl amd64 1.33-2 [35.0 kB] Get:234 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstring-copyright-perl all 0.003005-1 [10.1 kB] Get:235 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstring-escape-perl all 2010.002-2 [17.6 kB] Get:236 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtext-levenshtein-perl all 0.13-1 [9,612 B] Get:237 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] Get:238 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] Get:239 http://archive.ubuntu.com/ubuntu bionic/main amd64 libunicode-utf8-perl amd64 0.60-1build4 [17.9 kB] Get:240 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] Get:241 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] Get:242 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] Get:243 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-namespacesupport-perl all 1.12-1 [13.2 kB] Get:244 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-base-perl all 1.09-1 [18.8 kB] Get:245 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-perl all 0.99+dfsg-2ubuntu1 [64.6 kB] Get:246 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-libxml-perl amd64 2.0128+dfsg-5 [316 kB] Get:247 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-parser-perl amd64 2.44-2build3 [199 kB] Get:248 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-expat-perl all 0.40-2 [11.5 kB] Get:249 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-simple-perl all 2.24-1 [63.6 kB] Get:250 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-libyaml-perl amd64 0.69+repack-1 [26.4 kB] Get:251 http://archive.ubuntu.com/ubuntu bionic/main amd64 licensecheck all 3.0.31-2 [22.0 kB] Get:252 http://archive.ubuntu.com/ubuntu bionic/main amd64 patchutils amd64 0.3.4-2 [71.1 kB] Get:253 http://archive.ubuntu.com/ubuntu bionic/main amd64 t1utils amd64 1.41-2 [56.0 kB] Get:254 http://archive.ubuntu.com/ubuntu bionic/main amd64 lintian all 2.5.81ubuntu1 [847 kB] Get:255 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB] Get:256 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] Get:257 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] Get:258 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] Get:259 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pyparsing all 2.2.0+dfsg1-2 [52.2 kB] Get:260 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-certifi all 2018.1.18-2 [144 kB] Get:261 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] Get:262 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] Get:263 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python3-empy all 3.3.2-1build1 [37.3 kB] Get:264 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-idna all 2.6-1 [32.5 kB] Get:265 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] Get:266 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.2 [329 kB] Get:267 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pygments all 2.2.0+dfsg-1 [574 kB] Get:268 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-urllib3 all 1.22-1ubuntu0.18.04.1 [86.0 kB] Get:269 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-requests all 2.18.4-2ubuntu0.1 [58.3 kB] Get:270 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-setuptools all 39.0.1-2 [248 kB] Get:271 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-unidiff all 0.5.4-1 [7,140 B] Get:272 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-xdg all 0.25-4ubuntu1 [31.4 kB] Get:273 http://archive.ubuntu.com/ubuntu bionic/main amd64 unzip amd64 6.0-21ubuntu1 [167 kB] Get:274 http://archive.ubuntu.com/ubuntu bionic/main amd64 wdiff amd64 1.2.2-2 [29.6 kB] Get:275 http://archive.ubuntu.com/ubuntu bionic/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB] Get:276 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-magic all 2:0.4.15-1 [9,280 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 87.6 MB in 3s (27.1 MB/s) Selecting previously unselected package liblocale-gettext-perl. (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 ... 5787 files and directories currently installed.) Preparing to unpack .../liblocale-gettext-perl_1.07-3build2_amd64.deb ... Unpacking liblocale-gettext-perl (1.07-3build2) ... Selecting previously unselected package multiarch-support. Preparing to unpack .../multiarch-support_2.27-3ubuntu1_amd64.deb ... Unpacking multiarch-support (2.27-3ubuntu1) ... Setting up multiarch-support (2.27-3ubuntu1) ... Selecting previously unselected package libxau6:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5804 files and directories currently installed.) Preparing to unpack .../00-libxau6_1%3a1.0.8-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.8-1) ... Selecting previously unselected package libbsd0:amd64. Preparing to unpack .../01-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../02-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../03-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libx11-data. Preparing to unpack .../04-libx11-data_2%3a1.6.4-3ubuntu0.2_all.deb ... Unpacking libx11-data (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../05-libx11-6_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../06-libxext6_2%3a1.3.3-1_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.3-1) ... Selecting previously unselected package bsdmainutils. Preparing to unpack .../07-bsdmainutils_11.1.2ubuntu1_amd64.deb ... Unpacking bsdmainutils (11.1.2ubuntu1) ... Selecting previously unselected package groff-base. Preparing to unpack .../08-groff-base_1.22.3-10_amd64.deb ... Unpacking groff-base (1.22.3-10) ... Selecting previously unselected package libgdbm5:amd64. Preparing to unpack .../09-libgdbm5_1.14.1-6_amd64.deb ... Unpacking libgdbm5:amd64 (1.14.1-6) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../10-libpipeline1_1.5.0-1_amd64.deb ... Unpacking libpipeline1:amd64 (1.5.0-1) ... Selecting previously unselected package man-db. Preparing to unpack .../11-man-db_2.8.3-2ubuntu0.1_amd64.deb ... Unpacking man-db (2.8.3-2ubuntu0.1) ... Selecting previously unselected package libjpeg-turbo8:amd64. Preparing to unpack .../12-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.3_amd64.deb ... Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Selecting previously unselected package perl-modules-5.26. Preparing to unpack .../13-perl-modules-5.26_5.26.1-6ubuntu0.3_all.deb ... Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package libgdbm-compat4:amd64. Preparing to unpack .../14-libgdbm-compat4_1.14.1-6_amd64.deb ... Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... Selecting previously unselected package libperl5.26:amd64. Preparing to unpack .../15-libperl5.26_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package perl. Preparing to unpack .../16-perl_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking perl (5.26.1-6ubuntu0.3) ... Selecting previously unselected package libpython2.7-minimal:amd64. Preparing to unpack .../17-libpython2.7-minimal_2.7.17-1~18.04_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../18-python2.7-minimal_2.7.17-1~18.04_amd64.deb ... Unpacking python2.7-minimal (2.7.17-1~18.04) ... Selecting previously unselected package python-minimal. Preparing to unpack .../19-python-minimal_2.7.15~rc1-1_amd64.deb ... Unpacking python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package libpython2.7-stdlib:amd64. Preparing to unpack .../20-libpython2.7-stdlib_2.7.17-1~18.04_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04) ... Selecting previously unselected package python2.7. Preparing to unpack .../21-python2.7_2.7.17-1~18.04_amd64.deb ... Unpacking python2.7 (2.7.17-1~18.04) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../22-libpython-stdlib_2.7.15~rc1-1_amd64.deb ... Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04) ... Setting up python2.7-minimal (2.7.17-1~18.04) ... Setting up python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package python. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9303 files and directories currently installed.) Preparing to unpack .../000-python_2.7.15~rc1-1_amd64.deb ... Unpacking python (2.7.15~rc1-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../001-sgml-base_1.29_all.deb ... Unpacking sgml-base (1.29) ... Selecting previously unselected package openssl. Preparing to unpack .../002-openssl_1.1.1-1ubuntu2.1~18.04.5_amd64.deb ... Unpacking openssl (1.1.1-1ubuntu2.1~18.04.5) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../003-ca-certificates_20180409_all.deb ... Unpacking ca-certificates (20180409) ... Selecting previously unselected package distro-info-data. Preparing to unpack .../004-distro-info-data_0.37ubuntu0.6_all.deb ... Unpacking distro-info-data (0.37ubuntu0.6) ... Selecting previously unselected package less. Preparing to unpack .../005-less_487-0.1_amd64.deb ... Unpacking less (487-0.1) ... Selecting previously unselected package libapt-inst2.0:amd64. Preparing to unpack .../006-libapt-inst2.0_1.6.12_amd64.deb ... Unpacking libapt-inst2.0:amd64 (1.6.12) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../007-libglib2.0-0_2.56.4-0ubuntu0.18.04.4_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../008-libglib2.0-data_2.56.4-0ubuntu0.18.04.4_all.deb ... Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libicu60:amd64. Preparing to unpack .../009-libicu60_60.2-3ubuntu3_amd64.deb ... Unpacking libicu60:amd64 (60.2-3ubuntu3) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../010-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Selecting previously unselected package libyaml-0-2:amd64. Preparing to unpack .../011-libyaml-0-2_0.1.7-2ubuntu3_amd64.deb ... Unpacking libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Selecting previously unselected package lsb-release. Preparing to unpack .../012-lsb-release_9.20170808ubuntu1_all.deb ... Unpacking lsb-release (9.20170808ubuntu1) ... Selecting previously unselected package netbase. Preparing to unpack .../013-netbase_5.4_all.deb ... Unpacking netbase (5.4) ... Selecting previously unselected package python3-yaml. Preparing to unpack .../014-python3-yaml_3.12-1build2_amd64.deb ... Unpacking python3-yaml (3.12-1build2) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../015-shared-mime-info_1.9-2_amd64.deb ... Unpacking shared-mime-info (1.9-2) ... Selecting previously unselected package tzdata. Preparing to unpack .../016-tzdata_2019c-0ubuntu0.18.04_all.deb ... Unpacking tzdata (2019c-0ubuntu0.18.04) ... Selecting previously unselected package ucf. Preparing to unpack .../017-ucf_3.0038_all.deb ... Moving old data out of the way Unpacking ucf (3.0038) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../018-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... Unpacking xdg-user-dirs (0.17-1ubuntu1) ... Selecting previously unselected package gettext-base. Preparing to unpack .../019-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package iso-codes. Preparing to unpack .../020-iso-codes_3.79-1_all.deb ... Unpacking iso-codes (3.79-1) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../021-krb5-locales_1.16-2ubuntu0.1_all.deb ... Unpacking krb5-locales (1.16-2ubuntu0.1) ... Selecting previously unselected package libedit2:amd64. Preparing to unpack .../022-libedit2_3.1-20170329-1_amd64.deb ... Unpacking libedit2:amd64 (3.1-20170329-1) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../023-libkrb5support0_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../024-libk5crypto3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../025-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../026-libkrb5-3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../027-libgssapi-krb5-2_1.16-2ubuntu0.1_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../028-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../029-libpsl5_0.19.1-5build1_amd64.deb ... Unpacking libpsl5:amd64 (0.19.1-5build1) ... Selecting previously unselected package libssl1.0.0:amd64. Preparing to unpack .../030-libssl1.0.0_1.0.2n-1ubuntu5.3_amd64.deb ... Unpacking libssl1.0.0:amd64 (1.0.2n-1ubuntu5.3) ... Selecting previously unselected package libxmuu1:amd64. Preparing to unpack .../031-libxmuu1_2%3a1.1.2-2_amd64.deb ... Unpacking libxmuu1:amd64 (2:1.1.2-2) ... Selecting previously unselected package manpages. Preparing to unpack .../032-manpages_4.15-1_all.deb ... Unpacking manpages (4.15-1) ... Selecting previously unselected package openssh-client. Preparing to unpack .../033-openssh-client_1%3a7.6p1-4ubuntu0.3_amd64.deb ... Unpacking openssh-client (1:7.6p1-4ubuntu0.3) ... Selecting previously unselected package publicsuffix. Preparing to unpack .../034-publicsuffix_20180223.1310-1_all.deb ... Unpacking publicsuffix (20180223.1310-1) ... Selecting previously unselected package python-apt-common. Preparing to unpack .../035-python-apt-common_1.6.5ubuntu0.2_all.deb ... Unpacking python-apt-common (1.6.5ubuntu0.2) ... Selecting previously unselected package python3-apt. Preparing to unpack .../036-python3-apt_1.6.5ubuntu0.2_amd64.deb ... Unpacking python3-apt (1.6.5ubuntu0.2) ... Selecting previously unselected package libunwind8:amd64. Preparing to unpack .../037-libunwind8_1.2.1-8_amd64.deb ... Unpacking libunwind8:amd64 (1.2.1-8) ... Selecting previously unselected package strace. Preparing to unpack .../038-strace_4.21-1ubuntu1_amd64.deb ... Unpacking strace (4.21-1ubuntu1) ... Selecting previously unselected package xauth. Preparing to unpack .../039-xauth_1%3a1.0.10-1_amd64.deb ... Unpacking xauth (1:1.0.10-1) ... Selecting previously unselected package at. Preparing to unpack .../040-at_3.1.20-3.1ubuntu2_amd64.deb ... Unpacking at (3.1.20-3.1ubuntu2) ... Selecting previously unselected package binutils-common:amd64. Preparing to unpack .../041-binutils-common_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package libbinutils:amd64. Preparing to unpack .../042-libbinutils_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package binutils-x86-64-linux-gnu. Preparing to unpack .../043-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package binutils. Preparing to unpack .../044-binutils_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking binutils (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../045-libc-dev-bin_2.27-3ubuntu1_amd64.deb ... Unpacking libc-dev-bin (2.27-3ubuntu1) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../046-linux-libc-dev_4.15.0-76.86_amd64.deb ... Unpacking linux-libc-dev:amd64 (4.15.0-76.86) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../047-libc6-dev_2.27-3ubuntu1_amd64.deb ... Unpacking libc6-dev:amd64 (2.27-3ubuntu1) ... Selecting previously unselected package gcc-7-base:amd64. Preparing to unpack .../048-gcc-7-base_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package libisl19:amd64. Preparing to unpack .../049-libisl19_0.19-1_amd64.deb ... Unpacking libisl19:amd64 (0.19-1) ... Selecting previously unselected package libmpfr6:amd64. Preparing to unpack .../050-libmpfr6_4.0.1-1_amd64.deb ... Unpacking libmpfr6:amd64 (4.0.1-1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../051-libmpc3_1.1.0-1_amd64.deb ... Unpacking libmpc3:amd64 (1.1.0-1) ... Selecting previously unselected package cpp-7. Preparing to unpack .../052-cpp-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking cpp-7 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package cpp. Preparing to unpack .../053-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking cpp (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libcc1-0:amd64. Preparing to unpack .../054-libcc1-0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../055-libgomp1_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../056-libitm1_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../057-libatomic1_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libasan4:amd64. Preparing to unpack .../058-libasan4_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package liblsan0:amd64. Preparing to unpack .../059-liblsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../060-libtsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libubsan0:amd64. Preparing to unpack .../061-libubsan0_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package libcilkrts5:amd64. Preparing to unpack .../062-libcilkrts5_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package libmpx2:amd64. Preparing to unpack .../063-libmpx2_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../064-libquadmath0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libgcc-7-dev:amd64. Preparing to unpack .../065-libgcc-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package gcc-7. Preparing to unpack .../066-gcc-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking gcc-7 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package gcc. Preparing to unpack .../067-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking gcc (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libstdc++-7-dev:amd64. Preparing to unpack .../068-libstdc++-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libstdc++-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package g++-7. Preparing to unpack .../069-g++-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking g++-7 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package g++. Preparing to unpack .../070-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking g++ (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package make. Preparing to unpack .../071-make_4.1-9.1ubuntu1_amd64.deb ... Unpacking make (4.1-9.1ubuntu1) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../072-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... Selecting previously unselected package patch. Preparing to unpack .../073-patch_2.7.6-2ubuntu1.1_amd64.deb ... Unpacking patch (2.7.6-2ubuntu1.1) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../074-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... Selecting previously unselected package build-essential. Preparing to unpack .../075-build-essential_12.4ubuntu1_amd64.deb ... Unpacking build-essential (12.4ubuntu1) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../076-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../077-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Selecting previously unselected package libcurl4:amd64. Preparing to unpack .../078-libcurl4_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Selecting previously unselected package curl. Preparing to unpack .../079-curl_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking curl (7.58.0-2ubuntu3.8) ... Selecting previously unselected package dctrl-tools. Preparing to unpack .../080-dctrl-tools_2.24-2build1_amd64.deb ... Unpacking dctrl-tools (2.24-2build1) ... Selecting previously unselected package libfile-which-perl. Preparing to unpack .../081-libfile-which-perl_1.21-1_all.deb ... Unpacking libfile-which-perl (1.21-1) ... Selecting previously unselected package libfile-homedir-perl. Preparing to unpack .../082-libfile-homedir-perl_1.002-1_all.deb ... Unpacking libfile-homedir-perl (1.002-1) ... Selecting previously unselected package devscripts. Preparing to unpack .../083-devscripts_2.17.12ubuntu1.1_amd64.deb ... Unpacking devscripts (2.17.12ubuntu1.1) ... Selecting previously unselected package diffstat. Preparing to unpack .../084-diffstat_1.61-1build1_amd64.deb ... Unpacking diffstat (1.61-1build1) ... Selecting previously unselected package xml-core. Preparing to unpack .../085-xml-core_0.18_all.deb ... Unpacking xml-core (0.18) ... Selecting previously unselected package docutils-common. Preparing to unpack .../086-docutils-common_0.14+dfsg-3_all.deb ... Unpacking docutils-common (0.14+dfsg-3) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../087-python3-pkg-resources_39.0.1-2_all.deb ... Unpacking python3-pkg-resources (39.0.1-2) ... Selecting previously unselected package python3-chardet. Preparing to unpack .../088-python3-chardet_3.0.4-1_all.deb ... Unpacking python3-chardet (3.0.4-1) ... Selecting previously unselected package python3-six. Preparing to unpack .../089-python3-six_1.11.0-2_all.deb ... Unpacking python3-six (1.11.0-2) ... Selecting previously unselected package python3-debian. Preparing to unpack .../090-python3-debian_0.1.32_all.deb ... Unpacking python3-debian (0.1.32) ... Selecting previously unselected package libgpgme11:amd64. Preparing to unpack .../091-libgpgme11_1.10.0-1ubuntu2_amd64.deb ... Unpacking libgpgme11:amd64 (1.10.0-1ubuntu2) ... Selecting previously unselected package python3-gpg. Preparing to unpack .../092-python3-gpg_1.10.0-1ubuntu2_amd64.deb ... Unpacking python3-gpg (1.10.0-1ubuntu2) ... Selecting previously unselected package dput. Preparing to unpack .../093-dput_1.0.1ubuntu1_all.deb ... Unpacking dput (1.0.1ubuntu1) ... Selecting previously unselected package libfakeroot:amd64. Preparing to unpack .../094-libfakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../095-fakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking fakeroot (1.22-2ubuntu1) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../096-libcroco3_0.6.12-2_amd64.deb ... Unpacking libcroco3:amd64 (0.6.12-2) ... Selecting previously unselected package gettext. Preparing to unpack .../097-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package libcurl3-gnutls:amd64. Preparing to unpack .../098-libcurl3-gnutls_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.8) ... Selecting previously unselected package liberror-perl. Preparing to unpack .../099-liberror-perl_0.17025-1_all.deb ... Unpacking liberror-perl (0.17025-1) ... Selecting previously unselected package git-man. Preparing to unpack .../100-git-man_1%3a2.17.1-1ubuntu0.5_all.deb ... Unpacking git-man (1:2.17.1-1ubuntu0.5) ... Selecting previously unselected package git. Preparing to unpack .../101-git_1%3a2.17.1-1ubuntu0.5_amd64.deb ... Unpacking git (1:2.17.1-1ubuntu0.5) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../102-intltool-debian_0.35.0+20060710.4_all.deb ... Unpacking intltool-debian (0.35.0+20060710.4) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../103-libalgorithm-diff-perl_1.19.03-1_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-1) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../104-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-5) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../105-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../106-libapt-pkg-perl_0.1.33build1_amd64.deb ... Unpacking libapt-pkg-perl (0.1.33build1) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../107-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... Selecting previously unselected package libb-hooks-op-check-perl. Preparing to unpack .../108-libb-hooks-op-check-perl_0.22-1_amd64.deb ... Unpacking libb-hooks-op-check-perl (0.22-1) ... Selecting previously unselected package libdynaloader-functions-perl. Preparing to unpack .../109-libdynaloader-functions-perl_0.003-1_all.deb ... Unpacking libdynaloader-functions-perl (0.003-1) ... Selecting previously unselected package libdevel-callchecker-perl. Preparing to unpack .../110-libdevel-callchecker-perl_0.007-2build1_amd64.deb ... Unpacking libdevel-callchecker-perl (0.007-2build1) ... Selecting previously unselected package libparams-classify-perl. Preparing to unpack .../111-libparams-classify-perl_0.015-1_amd64.deb ... Unpacking libparams-classify-perl (0.015-1) ... Selecting previously unselected package libmodule-runtime-perl. Preparing to unpack .../112-libmodule-runtime-perl_0.016-1_all.deb ... Unpacking libmodule-runtime-perl (0.016-1) ... Selecting previously unselected package libtry-tiny-perl. Preparing to unpack .../113-libtry-tiny-perl_0.30-1_all.deb ... Unpacking libtry-tiny-perl (0.30-1) ... Selecting previously unselected package libmodule-implementation-perl. Preparing to unpack .../114-libmodule-implementation-perl_0.09-1_all.deb ... Unpacking libmodule-implementation-perl (0.09-1) ... Selecting previously unselected package libsub-exporter-progressive-perl. Preparing to unpack .../115-libsub-exporter-progressive-perl_0.001013-1_all.deb ... Unpacking libsub-exporter-progressive-perl (0.001013-1) ... Selecting previously unselected package libvariable-magic-perl. Preparing to unpack .../116-libvariable-magic-perl_0.62-1_amd64.deb ... Unpacking libvariable-magic-perl (0.62-1) ... Selecting previously unselected package libb-hooks-endofscope-perl. Preparing to unpack .../117-libb-hooks-endofscope-perl_0.21-1_all.deb ... Unpacking libb-hooks-endofscope-perl (0.21-1) ... Selecting previously unselected package libhtml-tagset-perl. Preparing to unpack .../118-libhtml-tagset-perl_3.20-3_all.deb ... Unpacking libhtml-tagset-perl (3.20-3) ... Selecting previously unselected package liburi-perl. Preparing to unpack .../119-liburi-perl_1.73-1_all.deb ... Unpacking liburi-perl (1.73-1) ... Selecting previously unselected package libhtml-parser-perl. Preparing to unpack .../120-libhtml-parser-perl_3.72-3build1_amd64.deb ... Unpacking libhtml-parser-perl (3.72-3build1) ... Selecting previously unselected package libcgi-pm-perl. Preparing to unpack .../121-libcgi-pm-perl_4.38-1_all.deb ... Unpacking libcgi-pm-perl (4.38-1) ... Selecting previously unselected package libfcgi-perl. Preparing to unpack .../122-libfcgi-perl_0.78-2build1_amd64.deb ... Unpacking libfcgi-perl (0.78-2build1) ... Selecting previously unselected package libcgi-fast-perl. Preparing to unpack .../123-libcgi-fast-perl_1%3a2.13-1_all.deb ... Unpacking libcgi-fast-perl (1:2.13-1) ... Selecting previously unselected package libsub-name-perl. Preparing to unpack .../124-libsub-name-perl_0.21-1build1_amd64.deb ... Unpacking libsub-name-perl (0.21-1build1) ... Selecting previously unselected package libclass-accessor-perl. Preparing to unpack .../125-libclass-accessor-perl_0.51-1_all.deb ... Unpacking libclass-accessor-perl (0.51-1) ... Selecting previously unselected package libclass-method-modifiers-perl. Preparing to unpack .../126-libclass-method-modifiers-perl_2.12-1_all.deb ... Unpacking libclass-method-modifiers-perl (2.12-1) ... Selecting previously unselected package libclass-xsaccessor-perl. Preparing to unpack .../127-libclass-xsaccessor-perl_1.19-2build8_amd64.deb ... Unpacking libclass-xsaccessor-perl (1.19-2build8) ... Selecting previously unselected package libclone-perl. Preparing to unpack .../128-libclone-perl_0.39-1_amd64.deb ... Unpacking libclone-perl (0.39-1) ... Selecting previously unselected package libdata-dump-perl. Preparing to unpack .../129-libdata-dump-perl_1.23-1_all.deb ... Unpacking libdata-dump-perl (1.23-1) ... Selecting previously unselected package libparams-util-perl. Preparing to unpack .../130-libparams-util-perl_1.07-3build3_amd64.deb ... Unpacking libparams-util-perl (1.07-3build3) ... Selecting previously unselected package libsub-install-perl. Preparing to unpack .../131-libsub-install-perl_0.928-1_all.deb ... Unpacking libsub-install-perl (0.928-1) ... Selecting previously unselected package libdata-optlist-perl. Preparing to unpack .../132-libdata-optlist-perl_0.110-1_all.deb ... Unpacking libdata-optlist-perl (0.110-1) ... Selecting previously unselected package libdevel-globaldestruction-perl. Preparing to unpack .../133-libdevel-globaldestruction-perl_0.14-1_all.deb ... Unpacking libdevel-globaldestruction-perl (0.14-1) ... Selecting previously unselected package libdigest-hmac-perl. Preparing to unpack .../134-libdigest-hmac-perl_1.03+dfsg-1_all.deb ... Unpacking libdigest-hmac-perl (1.03+dfsg-1) ... Selecting previously unselected package libdistro-info-perl. Preparing to unpack .../135-libdistro-info-perl_0.18ubuntu0.18.04.1_all.deb ... Unpacking libdistro-info-perl (0.18ubuntu0.18.04.1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../136-libtimedate-perl_2.3000-2_all.deb ... Unpacking libtimedate-perl (2.3000-2) ... Selecting previously unselected package perl-openssl-defaults:amd64. Preparing to unpack .../137-perl-openssl-defaults_3build1_amd64.deb ... Unpacking perl-openssl-defaults:amd64 (3build1) ... Selecting previously unselected package libnet-ssleay-perl. Preparing to unpack .../138-libnet-ssleay-perl_1.84-1ubuntu0.2_amd64.deb ... Unpacking libnet-ssleay-perl (1.84-1ubuntu0.2) ... Selecting previously unselected package libio-socket-ssl-perl. Preparing to unpack .../139-libio-socket-ssl-perl_2.060-3~ubuntu18.04.1_all.deb ... Unpacking libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... Selecting previously unselected package libnet-smtp-ssl-perl. Preparing to unpack .../140-libnet-smtp-ssl-perl_1.04-1_all.deb ... Unpacking libnet-smtp-ssl-perl (1.04-1) ... Selecting previously unselected package libmailtools-perl. Preparing to unpack .../141-libmailtools-perl_2.18-1_all.deb ... Unpacking libmailtools-perl (2.18-1) ... Selecting previously unselected package libsocket6-perl. Preparing to unpack .../142-libsocket6-perl_0.27-1build2_amd64.deb ... Unpacking libsocket6-perl (0.27-1build2) ... Selecting previously unselected package libio-socket-inet6-perl. Preparing to unpack .../143-libio-socket-inet6-perl_2.72-2_all.deb ... Unpacking libio-socket-inet6-perl (2.72-2) ... Selecting previously unselected package libnet-ip-perl. Preparing to unpack .../144-libnet-ip-perl_1.26-1_all.deb ... Unpacking libnet-ip-perl (1.26-1) ... Selecting previously unselected package libnet-dns-perl. Preparing to unpack .../145-libnet-dns-perl_1.10-2_all.deb ... Unpacking libnet-dns-perl (1.10-2) ... Selecting previously unselected package libnet-domain-tld-perl. Preparing to unpack .../146-libnet-domain-tld-perl_1.75-1_all.deb ... Unpacking libnet-domain-tld-perl (1.75-1) ... Selecting previously unselected package libemail-valid-perl. Preparing to unpack .../147-libemail-valid-perl_1.202-1_all.deb ... Unpacking libemail-valid-perl (1.202-1) ... Selecting previously unselected package libencode-locale-perl. Preparing to unpack .../148-libencode-locale-perl_1.05-1_all.deb ... Unpacking libencode-locale-perl (1.05-1) ... Selecting previously unselected package libexporter-tiny-perl. Preparing to unpack .../149-libexporter-tiny-perl_1.000000-2_all.deb ... Unpacking libexporter-tiny-perl (1.000000-2) ... Selecting previously unselected package libipc-system-simple-perl. Preparing to unpack .../150-libipc-system-simple-perl_1.25-4_all.deb ... Unpacking libipc-system-simple-perl (1.25-4) ... Selecting previously unselected package libfile-basedir-perl. Preparing to unpack .../151-libfile-basedir-perl_0.07-1_all.deb ... Unpacking libfile-basedir-perl (0.07-1) ... Selecting previously unselected package libfile-chdir-perl. Preparing to unpack .../152-libfile-chdir-perl_0.1008-1_all.deb ... Unpacking libfile-chdir-perl (0.1008-1) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../153-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... Unpacking libfile-fcntllock-perl (0.22-3build2) ... Selecting previously unselected package libhttp-date-perl. Preparing to unpack .../154-libhttp-date-perl_6.02-1_all.deb ... Unpacking libhttp-date-perl (6.02-1) ... Selecting previously unselected package libfile-listing-perl. Preparing to unpack .../155-libfile-listing-perl_6.04-1_all.deb ... Unpacking libfile-listing-perl (6.04-1) ... Selecting previously unselected package libfont-afm-perl. Preparing to unpack .../156-libfont-afm-perl_1.20-2_all.deb ... Unpacking libfont-afm-perl (1.20-2) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../157-libfreetype6_2.8.1-2ubuntu2_amd64.deb ... Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ... Selecting previously unselected package libio-stringy-perl. Preparing to unpack .../158-libio-stringy-perl_2.111-2_all.deb ... Unpacking libio-stringy-perl (2.111-2) ... Selecting previously unselected package libparams-validate-perl. Preparing to unpack .../159-libparams-validate-perl_1.29-1_amd64.deb ... Unpacking libparams-validate-perl (1.29-1) ... Selecting previously unselected package libsub-exporter-perl. Preparing to unpack .../160-libsub-exporter-perl_0.987-1_all.deb ... Unpacking libsub-exporter-perl (0.987-1) ... Selecting previously unselected package libgetopt-long-descriptive-perl. Preparing to unpack .../161-libgetopt-long-descriptive-perl_0.102-1_all.deb ... Unpacking libgetopt-long-descriptive-perl (0.102-1) ... Selecting previously unselected package libsort-versions-perl. Preparing to unpack .../162-libsort-versions-perl_1.62-1_all.deb ... Unpacking libsort-versions-perl (1.62-1) ... Selecting previously unselected package libgit-wrapper-perl. Preparing to unpack .../163-libgit-wrapper-perl_0.047-1_all.deb ... Unpacking libgit-wrapper-perl (0.047-1) ... Selecting previously unselected package libio-html-perl. Preparing to unpack .../164-libio-html-perl_1.001-1_all.deb ... Unpacking libio-html-perl (1.001-1) ... Selecting previously unselected package liblwp-mediatypes-perl. Preparing to unpack .../165-liblwp-mediatypes-perl_6.02-1_all.deb ... Unpacking liblwp-mediatypes-perl (6.02-1) ... Selecting previously unselected package libhttp-message-perl. Preparing to unpack .../166-libhttp-message-perl_6.14-1_all.deb ... Unpacking libhttp-message-perl (6.14-1) ... Selecting previously unselected package libhtml-form-perl. Preparing to unpack .../167-libhtml-form-perl_6.03-1_all.deb ... Unpacking libhtml-form-perl (6.03-1) ... Selecting previously unselected package libhtml-tree-perl. Preparing to unpack .../168-libhtml-tree-perl_5.07-1_all.deb ... Unpacking libhtml-tree-perl (5.07-1) ... Selecting previously unselected package libhtml-format-perl. Preparing to unpack .../169-libhtml-format-perl_2.12-1_all.deb ... Unpacking libhtml-format-perl (2.12-1) ... Selecting previously unselected package libhttp-cookies-perl. Preparing to unpack .../170-libhttp-cookies-perl_6.04-1_all.deb ... Unpacking libhttp-cookies-perl (6.04-1) ... Selecting previously unselected package libhttp-daemon-perl. Preparing to unpack .../171-libhttp-daemon-perl_6.01-1_all.deb ... Unpacking libhttp-daemon-perl (6.01-1) ... Selecting previously unselected package libhttp-negotiate-perl. Preparing to unpack .../172-libhttp-negotiate-perl_6.00-2_all.deb ... Unpacking libhttp-negotiate-perl (6.00-2) ... Selecting previously unselected package libimport-into-perl. Preparing to unpack .../173-libimport-into-perl_1.002005-1_all.deb ... Unpacking libimport-into-perl (1.002005-1) ... Selecting previously unselected package libio-pty-perl. Preparing to unpack .../174-libio-pty-perl_1%3a1.08-1.1build4_amd64.deb ... Unpacking libio-pty-perl (1:1.08-1.1build4) ... Selecting previously unselected package libio-string-perl. Preparing to unpack .../175-libio-string-perl_1.08-3_all.deb ... Unpacking libio-string-perl (1.08-3) ... Selecting previously unselected package libipc-run-perl. Preparing to unpack .../176-libipc-run-perl_0.96-1_all.deb ... Unpacking libipc-run-perl (0.96-1) ... Selecting previously unselected package libjpeg8:amd64. Preparing to unpack .../177-libjpeg8_8c-2ubuntu8_amd64.deb ... Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../178-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Selecting previously unselected package liblist-compare-perl. Preparing to unpack .../179-liblist-compare-perl_0.53-1_all.deb ... Unpacking liblist-compare-perl (0.53-1) ... Selecting previously unselected package liblist-moreutils-perl. Preparing to unpack .../180-liblist-moreutils-perl_0.416-1build3_amd64.deb ... Unpacking liblist-moreutils-perl (0.416-1build3) ... Selecting previously unselected package libnet-http-perl. Preparing to unpack .../181-libnet-http-perl_6.17-1_all.deb ... Unpacking libnet-http-perl (6.17-1) ... Selecting previously unselected package libwww-robotrules-perl. Preparing to unpack .../182-libwww-robotrules-perl_6.01-1_all.deb ... Unpacking libwww-robotrules-perl (6.01-1) ... Selecting previously unselected package libwww-perl. Preparing to unpack .../183-libwww-perl_6.31-1ubuntu0.1_all.deb ... Unpacking libwww-perl (6.31-1ubuntu0.1) ... Selecting previously unselected package liblwp-protocol-https-perl. Preparing to unpack .../184-liblwp-protocol-https-perl_6.07-2_all.deb ... Unpacking liblwp-protocol-https-perl (6.07-2) ... Selecting previously unselected package librole-tiny-perl. Preparing to unpack .../185-librole-tiny-perl_2.000006-1_all.deb ... Unpacking librole-tiny-perl (2.000006-1) ... Selecting previously unselected package libstrictures-perl. Preparing to unpack .../186-libstrictures-perl_2.000003-1_all.deb ... Unpacking libstrictures-perl (2.000003-1) ... Selecting previously unselected package libsub-quote-perl. Preparing to unpack .../187-libsub-quote-perl_2.005000-1_all.deb ... Unpacking libsub-quote-perl (2.005000-1) ... Selecting previously unselected package libmoo-perl. Preparing to unpack .../188-libmoo-perl_2.003004-1_all.deb ... Unpacking libmoo-perl (2.003004-1) ... Selecting previously unselected package libpackage-stash-perl. Preparing to unpack .../189-libpackage-stash-perl_0.37-1_all.deb ... Unpacking libpackage-stash-perl (0.37-1) ... Selecting previously unselected package libsub-identify-perl. Preparing to unpack .../190-libsub-identify-perl_0.14-1_amd64.deb ... Unpacking libsub-identify-perl (0.14-1) ... Selecting previously unselected package libnamespace-clean-perl. Preparing to unpack .../191-libnamespace-clean-perl_0.27-1_all.deb ... Unpacking libnamespace-clean-perl (0.27-1) ... Selecting previously unselected package libnumber-compare-perl. Preparing to unpack .../192-libnumber-compare-perl_0.03-1_all.deb ... Unpacking libnumber-compare-perl (0.03-1) ... Selecting previously unselected package libnumber-range-perl. Preparing to unpack .../193-libnumber-range-perl_0.12-1_all.deb ... Unpacking libnumber-range-perl (0.12-1) ... Selecting previously unselected package libpackage-stash-xs-perl. Preparing to unpack .../194-libpackage-stash-xs-perl_0.28-3build2_amd64.deb ... Unpacking libpackage-stash-xs-perl (0.28-3build2) ... Selecting previously unselected package libpaper1:amd64. Preparing to unpack .../195-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libpaper-utils. Preparing to unpack .../196-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libparse-debianchangelog-perl. Preparing to unpack .../197-libparse-debianchangelog-perl_1.2.0-12_all.deb ... Unpacking libparse-debianchangelog-perl (1.2.0-12) ... Selecting previously unselected package libtext-glob-perl. Preparing to unpack .../198-libtext-glob-perl_0.10-1_all.deb ... Unpacking libtext-glob-perl (0.10-1) ... Selecting previously unselected package libpath-iterator-rule-perl. Preparing to unpack .../199-libpath-iterator-rule-perl_1.009-1_all.deb ... Unpacking libpath-iterator-rule-perl (1.009-1) ... Selecting previously unselected package libpath-tiny-perl. Preparing to unpack .../200-libpath-tiny-perl_0.104-1_all.deb ... Unpacking libpath-tiny-perl (0.104-1) ... Selecting previously unselected package libperlio-gzip-perl. Preparing to unpack .../201-libperlio-gzip-perl_0.19-1build3_amd64.deb ... Unpacking libperlio-gzip-perl (0.19-1build3) ... Selecting previously unselected package libpod-constants-perl. Preparing to unpack .../202-libpod-constants-perl_0.19-1_all.deb ... Unpacking libpod-constants-perl (0.19-1) ... Selecting previously unselected package libregexp-pattern-license-perl. Preparing to unpack .../203-libregexp-pattern-license-perl_3.0.31-3_all.deb ... Unpacking libregexp-pattern-license-perl (3.0.31-3) ... Selecting previously unselected package libsort-key-perl. Preparing to unpack .../204-libsort-key-perl_1.33-2_amd64.deb ... Unpacking libsort-key-perl (1.33-2) ... Selecting previously unselected package libstring-copyright-perl. Preparing to unpack .../205-libstring-copyright-perl_0.003005-1_all.deb ... Unpacking libstring-copyright-perl (0.003005-1) ... Selecting previously unselected package libstring-escape-perl. Preparing to unpack .../206-libstring-escape-perl_2010.002-2_all.deb ... Unpacking libstring-escape-perl (2010.002-2) ... Selecting previously unselected package libtext-levenshtein-perl. Preparing to unpack .../207-libtext-levenshtein-perl_0.13-1_all.deb ... Unpacking libtext-levenshtein-perl (0.13-1) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../208-libjbig0_2.1-3.1build1_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1build1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../209-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Selecting previously unselected package libunicode-utf8-perl. Preparing to unpack .../210-libunicode-utf8-perl_0.60-1build4_amd64.deb ... Unpacking libunicode-utf8-perl (0.60-1build4) ... Selecting previously unselected package libwebp6:amd64. Preparing to unpack .../211-libwebp6_0.6.1-2_amd64.deb ... Unpacking libwebp6:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpdemux2:amd64. Preparing to unpack .../212-libwebpdemux2_0.6.1-2_amd64.deb ... Unpacking libwebpdemux2:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpmux3:amd64. Preparing to unpack .../213-libwebpmux3_0.6.1-2_amd64.deb ... Unpacking libwebpmux3:amd64 (0.6.1-2) ... Selecting previously unselected package libxml-namespacesupport-perl. Preparing to unpack .../214-libxml-namespacesupport-perl_1.12-1_all.deb ... Unpacking libxml-namespacesupport-perl (1.12-1) ... Selecting previously unselected package libxml-sax-base-perl. Preparing to unpack .../215-libxml-sax-base-perl_1.09-1_all.deb ... Unpacking libxml-sax-base-perl (1.09-1) ... Selecting previously unselected package libxml-sax-perl. Preparing to unpack .../216-libxml-sax-perl_0.99+dfsg-2ubuntu1_all.deb ... Unpacking libxml-sax-perl (0.99+dfsg-2ubuntu1) ... Selecting previously unselected package libxml-libxml-perl. Preparing to unpack .../217-libxml-libxml-perl_2.0128+dfsg-5_amd64.deb ... Unpacking libxml-libxml-perl (2.0128+dfsg-5) ... Selecting previously unselected package libxml-parser-perl. Preparing to unpack .../218-libxml-parser-perl_2.44-2build3_amd64.deb ... Unpacking libxml-parser-perl (2.44-2build3) ... Selecting previously unselected package libxml-sax-expat-perl. Preparing to unpack .../219-libxml-sax-expat-perl_0.40-2_all.deb ... Unpacking libxml-sax-expat-perl (0.40-2) ... Selecting previously unselected package libxml-simple-perl. Preparing to unpack .../220-libxml-simple-perl_2.24-1_all.deb ... Unpacking libxml-simple-perl (2.24-1) ... Selecting previously unselected package libyaml-libyaml-perl. Preparing to unpack .../221-libyaml-libyaml-perl_0.69+repack-1_amd64.deb ... Unpacking libyaml-libyaml-perl (0.69+repack-1) ... Selecting previously unselected package licensecheck. Preparing to unpack .../222-licensecheck_3.0.31-2_all.deb ... Unpacking licensecheck (3.0.31-2) ... Selecting previously unselected package patchutils. Preparing to unpack .../223-patchutils_0.3.4-2_amd64.deb ... Unpacking patchutils (0.3.4-2) ... Selecting previously unselected package t1utils. Preparing to unpack .../224-t1utils_1.41-2_amd64.deb ... Unpacking t1utils (1.41-2) ... Selecting previously unselected package lintian. Preparing to unpack .../225-lintian_2.5.81ubuntu1_all.deb ... Unpacking lintian (2.5.81ubuntu1) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../226-manpages-dev_4.15-1_all.deb ... Unpacking manpages-dev (4.15-1) ... Selecting previously unselected package python3-dateutil. Preparing to unpack .../227-python3-dateutil_2.6.1-1_all.deb ... Unpacking python3-dateutil (2.6.1-1) ... Selecting previously unselected package python3-roman. Preparing to unpack .../228-python3-roman_2.0.0-3_all.deb ... Unpacking python3-roman (2.0.0-3) ... Selecting previously unselected package python3-docutils. Preparing to unpack .../229-python3-docutils_0.14+dfsg-3_all.deb ... Unpacking python3-docutils (0.14+dfsg-3) ... Selecting previously unselected package python3-pyparsing. Preparing to unpack .../230-python3-pyparsing_2.2.0+dfsg1-2_all.deb ... Unpacking python3-pyparsing (2.2.0+dfsg1-2) ... Selecting previously unselected package python3-catkin-pkg-modules. Preparing to unpack .../231-python3-catkin-pkg-modules_0.4.16-1_all.deb ... Unpacking python3-catkin-pkg-modules (0.4.16-1) ... Selecting previously unselected package python3-certifi. Preparing to unpack .../232-python3-certifi_2018.1.18-2_all.deb ... Unpacking python3-certifi (2018.1.18-2) ... Selecting previously unselected package python3-lib2to3. Preparing to unpack .../233-python3-lib2to3_3.6.9-1~18.04_all.deb ... Unpacking python3-lib2to3 (3.6.9-1~18.04) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../234-python3-distutils_3.6.9-1~18.04_all.deb ... Unpacking python3-distutils (3.6.9-1~18.04) ... Selecting previously unselected package python3-empy. Preparing to unpack .../235-python3-empy_3.3.2-1build1_all.deb ... Unpacking python3-empy (3.3.2-1build1) ... Selecting previously unselected package python3-idna. Preparing to unpack .../236-python3-idna_2.6-1_all.deb ... Unpacking python3-idna (2.6-1) ... Selecting previously unselected package python3-olefile. Preparing to unpack .../237-python3-olefile_0.45.1-1_all.deb ... Unpacking python3-olefile (0.45.1-1) ... Selecting previously unselected package python3-pil:amd64. Preparing to unpack .../238-python3-pil_5.1.0-1ubuntu0.2_amd64.deb ... Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.2) ... Selecting previously unselected package python3-pygments. Preparing to unpack .../239-python3-pygments_2.2.0+dfsg-1_all.deb ... Unpacking python3-pygments (2.2.0+dfsg-1) ... Selecting previously unselected package python3-urllib3. Preparing to unpack .../240-python3-urllib3_1.22-1ubuntu0.18.04.1_all.deb ... Unpacking python3-urllib3 (1.22-1ubuntu0.18.04.1) ... Selecting previously unselected package python3-requests. Preparing to unpack .../241-python3-requests_2.18.4-2ubuntu0.1_all.deb ... Unpacking python3-requests (2.18.4-2ubuntu0.1) ... Selecting previously unselected package python3-rospkg-modules. Preparing to unpack .../242-python3-rospkg-modules_1.2.3-1_all.deb ... Unpacking python3-rospkg-modules (1.2.3-1) ... Selecting previously unselected package python3-setuptools. Preparing to unpack .../243-python3-setuptools_39.0.1-2_all.deb ... Unpacking python3-setuptools (39.0.1-2) ... Selecting previously unselected package python3-rosdistro-modules. Preparing to unpack .../244-python3-rosdistro-modules_0.8.0-1_all.deb ... Unpacking python3-rosdistro-modules (0.8.0-1) ... Selecting previously unselected package python3-unidiff. Preparing to unpack .../245-python3-unidiff_0.5.4-1_all.deb ... Unpacking python3-unidiff (0.5.4-1) ... Selecting previously unselected package python3-xdg. Preparing to unpack .../246-python3-xdg_0.25-4ubuntu1_all.deb ... Unpacking python3-xdg (0.25-4ubuntu1) ... Selecting previously unselected package unzip. Preparing to unpack .../247-unzip_6.0-21ubuntu1_amd64.deb ... Unpacking unzip (6.0-21ubuntu1) ... Selecting previously unselected package wdiff. Preparing to unpack .../248-wdiff_1.2.2-2_amd64.deb ... Unpacking wdiff (1.2.2-2) ... Selecting previously unselected package libauthen-sasl-perl. Preparing to unpack .../249-libauthen-sasl-perl_2.1600-1_all.deb ... Unpacking libauthen-sasl-perl (2.1600-1) ... Selecting previously unselected package python3-magic. Preparing to unpack .../250-python3-magic_2%3a0.4.15-1_all.deb ... Unpacking python3-magic (2:0.4.15-1) ... Setting up libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up python-apt-common (1.6.5ubuntu0.2) ... Setting up libedit2:amd64 (3.1-20170329-1) ... Setting up libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libapt-inst2.0:amd64 (1.6.12) ... Setting up manpages (4.15-1) ... Setting up git-man (1:2.17.1-1ubuntu0.5) ... Setting up libicu60:amd64 (60.2-3ubuntu3) ... Setting up libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up less (487-0.1) ... Setting up python3-roman (2.0.0-3) ... Setting up make (4.1-9.1ubuntu1) ... Setting up python3-apt (1.6.5ubuntu0.2) ... Setting up libapt-pkg-perl (0.1.33build1) ... Setting up libssl1.0.0:amd64 (1.0.2n-1ubuntu5.3) ... Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Setting up python3-olefile (0.45.1-1) ... Setting up iso-codes (3.79-1) ... Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Setting up libjbig0:amd64 (2.1-3.1build1) ... Setting up perl-openssl-defaults:amd64 (3build1) ... Setting up libpsl5:amd64 (0.19.1-5build1) ... Setting up tzdata (2019c-0ubuntu0.18.04) ... Current default time zone: 'Etc/UTC' Local time is now: Thu Feb 13 14:07:27 UTC 2020. Universal Time is now: Thu Feb 13 14:07:27 UTC 2020. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up groff-base (1.22.3-10) ... Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ... No schema files found: doing nothing. Setting up python3-magic (2:0.4.15-1) ... Setting up python3-idna (2.6-1) ... Setting up python3-xdg (0.25-4ubuntu1) ... Setting up python3-six (1.11.0-2) ... Setting up unzip (6.0-21ubuntu1) ... Setting up linux-libc-dev:amd64 (4.15.0-76.86) ... Setting up libmpfr6:amd64 (4.0.1-1) ... Setting up python3-pyparsing (2.2.0+dfsg1-2) ... Setting up dctrl-tools (2.24-2build1) ... Setting up distro-info-data (0.37ubuntu0.6) ... Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Setting up libpipeline1:amd64 (1.5.0-1) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Setting up perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Setting up sgml-base (1.29) ... Setting up python3-pkg-resources (39.0.1-2) ... Setting up libgdbm5:amd64 (1.14.1-6) ... Setting up lsb-release (9.20170808ubuntu1) ... Setting up at (3.1.20-3.1ubuntu2) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Setting up libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Setting up ucf (3.0038) ... Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ... Setting up liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libcroco3:amd64 (0.6.12-2) ... Setting up libgpgme11:amd64 (1.10.0-1ubuntu2) ... Setting up gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ... Setting up libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Setting up patch (2.7.6-2ubuntu1.1) ... Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ... Setting up libunwind8:amd64 (1.2.1-8) ... Setting up krb5-locales (1.16-2ubuntu0.1) ... Setting up publicsuffix (20180223.1310-1) ... Setting up python3-chardet (3.0.4-1) ... Setting up t1utils (1.41-2) ... Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... Setting up openssl (1.1.1-1ubuntu2.1~18.04.5) ... Setting up liblocale-gettext-perl (1.07-3build2) ... Setting up wdiff (1.2.2-2) ... Setting up shared-mime-info (1.9-2) ... Setting up python3-urllib3 (1.22-1ubuntu0.18.04.1) ... Setting up python3-unidiff (0.5.4-1) ... Setting up libmpc3:amd64 (1.1.0-1) ... Setting up libc-dev-bin (2.27-3ubuntu1) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up xml-core (0.18) ... Setting up libgdbm-compat4:amd64 (1.14.1-6) ... Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Setting up bsdmainutils (11.1.2ubuntu1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist Setting up python3-lib2to3 (3.6.9-1~18.04) ... Setting up ca-certificates (20180409) ... Updating certificates in /etc/ssl/certs... 133 added, 0 removed; done. Setting up manpages-dev (4.15-1) ... Setting up libc6-dev:amd64 (2.27-3ubuntu1) ... Setting up xdg-user-dirs (0.17-1ubuntu1) ... Setting up python3-debian (0.1.32) ... Setting up python3-distutils (3.6.9-1~18.04) ... Setting up libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libx11-data (2:1.6.4-3ubuntu0.2) ... Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04) ... Setting up diffstat (1.61-1build1) ... Setting up libxau6:amd64 (1:1.0.8-1) ... Setting up python3-dateutil (2.6.1-1) ... Setting up netbase (5.4) ... Setting up libwebp6:amd64 (0.6.1-2) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up libisl19:amd64 (0.19-1) ... Setting up python3-pygments (2.2.0+dfsg-1) ... Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Creating config file /etc/papersize with new version Setting up python3-yaml (3.12-1build2) ... Setting up strace (4.21-1ubuntu1) ... Setting up libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... Setting up libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up gettext (0.19.8.1-6ubuntu0.3) ... Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ... Setting up libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up python2.7 (2.7.17-1~18.04) ... Setting up python3-certifi (2018.1.18-2) ... Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Setting up python3-gpg (1.10.0-1ubuntu2) ... Setting up fakeroot (1.22-2ubuntu1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist Setting up libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up cpp-7 (7.4.0-1ubuntu1~18.04.1) ... Setting up libstdc++-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Setting up libwebpmux3:amd64 (0.6.1-2) ... Setting up dput (1.0.1ubuntu1) ... Setting up python3-requests (2.18.4-2ubuntu0.1) ... Setting up libwebpdemux2:amd64 (0.6.1-2) ... Setting up man-db (2.8.3-2ubuntu0.1) ... Building database of manual pages ... Setting up libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Setting up python3-setuptools (39.0.1-2) ... Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... Setting up python (2.7.15~rc1-1) ... Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ... Setting up cpp (4:7.4.0-1ubuntu2.3) ... Setting up python3-pil:amd64 (5.1.0-1ubuntu0.2) ... Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libxmuu1:amd64 (2:1.1.2-2) ... Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Setting up perl (5.26.1-6ubuntu0.3) ... Setting up libfile-chdir-perl (0.1008-1) ... Setting up libfile-fcntllock-perl (0.22-3build2) ... Setting up libtext-glob-perl (0.10-1) ... Setting up intltool-debian (0.35.0+20060710.4) ... Setting up libxml-sax-base-perl (1.09-1) ... Setting up libpackage-stash-xs-perl (0.28-3build2) ... Setting up libstrictures-perl (2.000003-1) ... Setting up liblwp-mediatypes-perl (6.02-1) ... Setting up libsocket6-perl (0.27-1build2) ... Setting up patchutils (0.3.4-2) ... Setting up liburi-perl (1.73-1) ... Setting up libdata-dump-perl (1.23-1) ... Setting up libdigest-hmac-perl (1.03+dfsg-1) ... Setting up libio-string-perl (1.08-3) ... Setting up libalgorithm-diff-perl (1.19.03-1) ... Setting up libclone-perl (0.39-1) ... Setting up python3-empy (3.3.2-1build1) ... Setting up libclass-xsaccessor-perl (1.19-2build8) ... Setting up libnet-http-perl (6.17-1) ... Setting up libnumber-compare-perl (0.03-1) ... Setting up binutils (2.30-21ubuntu1~18.04.2) ... Setting up libunicode-utf8-perl (0.60-1build4) ... Setting up libparams-util-perl (1.07-3build3) ... Setting up libsub-name-perl (0.21-1build1) ... Setting up openssh-client (1:7.6p1-4ubuntu0.3) ... Setting up libyaml-libyaml-perl (0.69+repack-1) ... Setting up libsub-quote-perl (2.005000-1) ... Setting up libfcgi-perl (0.78-2build1) ... Setting up libwww-robotrules-perl (6.01-1) ... Setting up libauthen-sasl-perl (2.1600-1) ... Setting up libclass-accessor-perl (0.51-1) ... Setting up libsort-key-perl (1.33-2) ... Setting up libhtml-tagset-perl (3.20-3) ... Setting up libpath-tiny-perl (0.104-1) ... Setting up libnet-domain-tld-perl (1.75-1) ... Setting up libsub-install-perl (0.928-1) ... Setting up libdata-optlist-perl (0.110-1) ... Setting up libio-stringy-perl (2.111-2) ... Setting up libsub-exporter-progressive-perl (0.001013-1) ... Setting up libtry-tiny-perl (0.30-1) ... Setting up libclass-method-modifiers-perl (2.12-1) ... Setting up libfont-afm-perl (1.20-2) ... Setting up libregexp-pattern-license-perl (3.0.31-3) ... Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... Setting up libxext6:amd64 (2:1.3.3-1) ... Setting up libdistro-info-perl (0.18ubuntu0.18.04.1) ... Setting up libio-socket-inet6-perl (2.72-2) ... Setting up libxml-namespacesupport-perl (1.12-1) ... Setting up libio-pty-perl (1:1.08-1.1build4) ... Setting up libfile-which-perl (1.21-1) ... Setting up libencode-locale-perl (1.05-1) ... Setting up libperlio-gzip-perl (0.19-1build3) ... Setting up libtext-levenshtein-perl (0.13-1) ... Setting up gcc-7 (7.4.0-1ubuntu1~18.04.1) ... Setting up liberror-perl (0.17025-1) ... Setting up libvariable-magic-perl (0.62-1) ... Setting up libtimedate-perl (2.3000-2) ... Setting up libnet-ip-perl (1.26-1) ... Setting up librole-tiny-perl (2.000006-1) ... Setting up libnet-ssleay-perl (1.84-1ubuntu0.2) ... Setting up g++-7 (7.4.0-1ubuntu1~18.04.1) ... Setting up libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.8) ... Setting up libfile-homedir-perl (1.002-1) ... Setting up libipc-system-simple-perl (1.25-4) ... Setting up libfile-basedir-perl (0.07-1) ... Setting up libstring-escape-perl (2010.002-2) ... Setting up libb-hooks-op-check-perl (0.22-1) ... Setting up libio-html-perl (1.001-1) ... Setting up libexporter-tiny-perl (1.000000-2) ... Setting up libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... Setting up libnumber-range-perl (0.12-1) ... Setting up liblist-compare-perl (0.53-1) ... Setting up libpath-iterator-rule-perl (1.009-1) ... Setting up gcc (4:7.4.0-1ubuntu2.3) ... Setting up libnet-dns-perl (1.10-2) ... Setting up libsub-identify-perl (0.14-1) ... Setting up libpod-constants-perl (0.19-1) ... Setting up libsort-versions-perl (1.62-1) ... Setting up libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... Setting up libdynaloader-functions-perl (0.003-1) ... Setting up libsub-exporter-perl (0.987-1) ... Setting up xauth (1:1.0.10-1) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... Setting up libalgorithm-diff-xs-perl (0.04-5) ... Setting up libstring-copyright-perl (0.003005-1) ... Setting up libhtml-parser-perl (3.72-3build1) ... Setting up libipc-run-perl (0.96-1) ... Setting up libcgi-pm-perl (4.38-1) ... Setting up libdevel-globaldestruction-perl (0.14-1) ... Setting up libparse-debianchangelog-perl (1.2.0-12) ... Setting up g++ (4:7.4.0-1ubuntu2.3) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist Setting up git (1:2.17.1-1ubuntu0.5) ... Setting up libxml-sax-perl (0.99+dfsg-2ubuntu1) ... update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up liblist-moreutils-perl (0.416-1build3) ... Setting up libgit-wrapper-perl (0.047-1) ... Setting up libhttp-date-perl (6.02-1) ... Setting up libnet-smtp-ssl-perl (1.04-1) ... Setting up curl (7.58.0-2ubuntu3.8) ... Setting up build-essential (12.4ubuntu1) ... Setting up libdevel-callchecker-perl (0.007-2build1) ... Setting up devscripts (2.17.12ubuntu1.1) ... Setting up libcgi-fast-perl (1:2.13-1) ... Setting up libhtml-tree-perl (5.07-1) ... Setting up libfile-listing-perl (6.04-1) ... Setting up libhttp-message-perl (6.14-1) ... Setting up libxml-libxml-perl (2.0128+dfsg-5) ... update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up libparams-classify-perl (0.015-1) ... Setting up libhttp-negotiate-perl (6.00-2) ... Setting up libmailtools-perl (2.18-1) ... Setting up libhtml-format-perl (2.12-1) ... Setting up libemail-valid-perl (1.202-1) ... Setting up libhttp-cookies-perl (6.04-1) ... Setting up libmodule-runtime-perl (0.016-1) ... Setting up libhttp-daemon-perl (6.01-1) ... Setting up libxml-simple-perl (2.24-1) ... Setting up lintian (2.5.81ubuntu1) ... Setting up libhtml-form-perl (6.03-1) ... Setting up libimport-into-perl (1.002005-1) ... Setting up libmodule-implementation-perl (0.09-1) ... Setting up libparams-validate-perl (1.29-1) ... Setting up libmoo-perl (2.003004-1) ... Setting up libb-hooks-endofscope-perl (0.21-1) ... Setting up libpackage-stash-perl (0.37-1) ... Setting up libgetopt-long-descriptive-perl (0.102-1) ... Setting up libnamespace-clean-perl (0.27-1) ... Setting up licensecheck (3.0.31-2) ... Setting up libwww-perl (6.31-1ubuntu0.1) ... Setting up liblwp-protocol-https-perl (6.07-2) ... Setting up libxml-parser-perl (2.44-2build3) ... Setting up libxml-sax-expat-perl (0.40-2) ... update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::Expat with priority 50... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for sgml-base (1.29) ... Setting up docutils-common (0.14+dfsg-3) ... Processing triggers for sgml-base (1.29) ... Setting up python3-docutils (0.14+dfsg-3) ... update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode Setting up python3-catkin-pkg-modules (0.4.16-1) ... Setting up python3-rospkg-modules (1.2.3-1) ... Setting up python3-rosdistro-modules (0.8.0-1) ... Processing triggers for ca-certificates (20180409) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Invoking 'apt-get clean' Removing intermediate container fd8be4121d6c ---> 9e759f8b5a29 Step 26/30 : RUN echo "2020-02-13 14:05:42 +0000" ---> Running in bf5fa958ca67 2020-02-13 14:05:42 +0000 Removing intermediate container bf5fa958ca67 ---> 208c33738534 Step 27/30 : RUN python3 -u /tmp/wrapper_scripts/apt.py update ---> Running in c10343e994e4 Invoking 'apt-get update' Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Get:9 http://10.210.9.154/ubuntu/building bionic/main Sources [107 kB] Hit:10 http://packages.ros.org/ros/ubuntu bionic InRelease Fetched 110 kB in 1s (79.7 kB/s) Reading package lists... Removing intermediate container c10343e994e4 ---> 6e551abb5714 Step 28/30 : USER buildfarm ---> Running in f60b40004541 Removing intermediate container f60b40004541 ---> 02668bce6d0a Step 29/30 : ENTRYPOINT ["sh", "-c"] ---> Running in 47456c5c3931 Removing intermediate container 47456c5c3931 ---> a4409db5d147 Step 30/30 : CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic prism_strands --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic prism_strands --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic prism_strands ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key /tmp/keys/2.key --binarydeb-dir /tmp/binarydeb --env-vars --dockerfile-dir /tmp/docker_build_binarydeb"] ---> Running in 05f2da528a43 Removing intermediate container 05f2da528a43 ---> cae148c8c1c0 Successfully built cae148c8c1c0 Successfully tagged binarydeb_task_generation.melodic_ubuntu_bionic_amd64_prism_strands:latest + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - binarydeb task # BEGIN SECTION: Run Dockerfile - binarydeb task + [ -f /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb ] + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_build_binarydeb + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_build_binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_build_binarydeb:/tmp/docker_build_binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_task_generation.melodic_ubuntu_bionic_amd64_prism_strands # BEGIN SUBSECTION: get sourcedeb Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-prism-strands=1.2.5-1bionic' Invoking 'apt-get source --download-only --only-source ros-melodic-prism-strands=1.2.5-1bionic' Reading package lists... Need to get 7,335 B of source archives. Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-prism-strands 1.2.5-1bionic (dsc) [1,019 B] Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-prism-strands 1.2.5-1bionic (tar) [3,816 B] Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-prism-strands 1.2.5-1bionic (diff) [2,500 B] Fetched 7,335 B in 0s (612 kB/s) Download complete and in download only mode Invoking 'dpkg-source -x ros-melodic-prism-strands_1.2.5-1bionic.dsc' dpkg-source: warning: extracting unsigned source package (ros-melodic-prism-strands_1.2.5-1bionic.dsc) dpkg-source: info: extracting ros-melodic-prism-strands in ros-melodic-prism-strands-1.2.5 dpkg-source: info: unpacking ros-melodic-prism-strands_1.2.5.orig.tar.gz dpkg-source: info: unpacking ros-melodic-prism-strands_1.2.5-1bionic.debian.tar.xz Package maintainer emails: b.lacerda@cs.bham.ac.uk nick.hawes@gmail.com # END SUBSECTION # BEGIN SUBSECTION: append build timestamp Invoking 'debchange -v 1.2.5-1bionic.20200213.140826 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' # END SUBSECTION Looking for the '.dsc' file of package 'ros-melodic-prism-strands' with version '1.2.5-1' Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ (/tmp/keys/2.key) Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': # generated from release/binarydeb_task.Dockerfile.em FROM ubuntu:bionic VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -l -m buildfarm RUN mkdir /tmp/keys RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi\nQlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t\nPLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d\n79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF\nvuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV\nsKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9\n/SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx\nCyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf\njqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF\nHQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r\nCGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB\ntCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223\nhQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW\nrYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR\n8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm\n2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y\n6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2\nS32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG\n8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r\n1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv\nkR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb\nb8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7\n/WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf\nk52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg==\n=0nKc\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/2.key && apt-key add /tmp/keys/2.key RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ / | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2020-02-13 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential # for each dependency: echo version, apt update, apt install, apt clean # to prevent exceeding the docker layer limit several lines have been folded RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper RUN echo "default-jdk: 2:1.11-68ubuntu1~18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes default-jdk RUN echo "ros-melodic-catkin: 0.7.20-1bionic.20191210.204717" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin RUN echo "ros-melodic-roscpp: 1.14.3-0bionic.20191210.230336" && echo "rsync: 3.1.2-2.1ubuntu1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-roscpp rsync USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic prism_strands --sourcedeb-dir /tmp/binarydeb"] Mount the following volumes when running the container: -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro -v /tmp/binarydeb:/tmp/binarydeb + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson61853218933111364.sh + sleep 1 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 11083 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid + echo # BEGIN SECTION: Build Dockerfile - build binarydeb # BEGIN SECTION: Build Dockerfile - build binarydeb + cd /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_build_binarydeb + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic Check docker base image for updates: docker pull ubuntu:bionic bionic: Pulling from library/ubuntu Digest: sha256:8d31dad0c58f552e890d68bbfb735588b6b820a46e459672d96e585871acc110 Status: Image is up to date for ubuntu:bionic + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_prism_strands . Sending build context to Docker daemon 23.04kB Step 1/33 : FROM ubuntu:bionic ---> ccc6e87d482b Step 2/33 : VOLUME ["/var/cache/apt/archives"] ---> Using cache ---> e0e0cfc26e8c Step 3/33 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 2bad8f033f22 Step 4/33 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> c4724c79288a Step 5/33 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> ca8d43874a4f Step 6/33 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 581b47f289b4 Step 7/33 : ENV LANG en_US.UTF-8 ---> Using cache ---> 8a115e884a42 Step 8/33 : ENV TZ GMT+00 ---> Using cache ---> ba7ad2d61b1b Step 9/33 : RUN useradd -u 1002 -l -m buildfarm ---> Using cache ---> 765e420be9e7 Step 10/33 : RUN mkdir /tmp/keys ---> Using cache ---> 533046a46dea Step 11/33 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 7793979909f5 Step 12/33 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> 52b0ccf958c6 Step 13/33 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> c575d85d16be Step 14/33 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi\nQlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t\nPLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d\n79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF\nvuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV\nsKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9\n/SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx\nCyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf\njqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF\nHQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r\nCGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB\ntCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223\nhQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW\nrYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR\n8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm\n2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y\n6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2\nS32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG\n8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r\n1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv\nkR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb\nb8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7\n/WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf\nk52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg==\n=0nKc\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/2.key && apt-key add /tmp/keys/2.key ---> Using cache ---> 18cd8cf7deea Step 15/33 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 6305d7b3fc21 Step 16/33 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 65589bac5041 Step 17/33 : RUN echo deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ / | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> fe0e205e726c Step 18/33 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) ---> Using cache ---> 0117e1910cd8 Step 19/33 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> 7b4aa1cdf9b9 Step 20/33 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Using cache ---> 0eb65ee21bcc Step 21/33 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> 335b27b11d95 Step 22/33 : RUN echo "2020-02-13 (+0000)" ---> Running in 393ccc3bb2f6 2020-02-13 (+0000) Removing intermediate container 393ccc3bb2f6 ---> 58827edc2d6d Step 23/33 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Running in 81e8a2eaf85c Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Get:7 http://packages.ros.org/ros/ubuntu bionic InRelease [4,669 B] Get:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release [564 B] Get:9 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Get:10 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release.gpg [833 B] Get:11 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [136 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/multiverse Sources [216 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Sources [6,199 B] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,104 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,344 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-security/multiverse Sources [3,226 B] Get:17 http://archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [7,064 B] Get:18 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [623 kB] Get:19 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Packages [132 kB] Fetched 3,921 kB in 2s (1,658 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal python3.6 python3.6-minimal xz-utils Suggested packages: python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils binfmt-support The following NEW packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3 python3-minimal python3.6 python3.6-minimal xz-utils 0 upgraded, 14 newly installed, 0 to remove and 18 not upgraded. Need to get 4,687 kB of archives. After this operation, 28.3 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04 [533 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04 [1,610 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04 [1,709 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04 [203 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.3 [184 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.3 [68.7 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.3 [22.1 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 4,687 kB in 0s (25.4 MB/s) Selecting previously unselected package libpython3.6-minimal:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5006 files and directories currently installed.) Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04_amd64.deb ... Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package python3.6-minimal. Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04_amd64.deb ... Unpacking python3.6-minimal (3.6.9-1~18.04) ... Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04) ... Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Setting up python3.6-minimal (3.6.9-1~18.04) ... Selecting previously unselected package python3-minimal. (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 ... 5253 files and directories currently installed.) Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ... Unpacking python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package mime-support. Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ... Unpacking mime-support (3.60ubuntu1) ... Selecting previously unselected package libmpdec2:amd64. Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ... Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... Selecting previously unselected package libpython3.6-stdlib:amd64. Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04_amd64.deb ... Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04) ... Selecting previously unselected package python3.6. Preparing to unpack .../4-python3.6_3.6.9-1~18.04_amd64.deb ... Unpacking python3.6 (3.6.9-1~18.04) ... Selecting previously unselected package libpython3-stdlib:amd64. Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package python3. (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 ... 5683 files and directories currently installed.) Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ... Unpacking python3 (3.6.7-1~18.04) ... Selecting previously unselected package libmagic-mgc. Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.3_amd64.deb ... Unpacking libmagic-mgc (1:5.32-2ubuntu0.3) ... Selecting previously unselected package libmagic1:amd64. Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.3_amd64.deb ... Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.3) ... Selecting previously unselected package file. Preparing to unpack .../file_1%3a5.32-2ubuntu0.3_amd64.deb ... Unpacking file (1:5.32-2ubuntu0.3) ... Selecting previously unselected package xz-utils. Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ... Unpacking xz-utils (5.2.2-1.3) ... Setting up mime-support (3.60ubuntu1) ... Setting up libmagic-mgc (1:5.32-2ubuntu0.3) ... Setting up libmagic1:amd64 (1:5.32-2ubuntu0.3) ... Setting up xz-utils (5.2.2-1.3) ... update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04) ... Setting up python3.6 (3.6.9-1~18.04) ... Setting up file (1:5.32-2ubuntu0.3) ... Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3 (3.6.7-1~18.04) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Removing intermediate container 81e8a2eaf85c ---> 1fab6053efce Step 24/33 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python ---> Running in d1e63530420e Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y dh-python' Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: python3-distutils python3-lib2to3 Suggested packages: libdpkg-perl dpkg-dev The following NEW packages will be installed: dh-python python3-distutils python3-lib2to3 0 upgraded, 3 newly installed, 0 to remove and 18 not upgraded. Need to get 311 kB of archives. After this operation, 3,582 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-python all 3.20180325ubuntu2 [89.2 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 311 kB in 0s (4,848 kB/s) Selecting previously unselected package python3-lib2to3. (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 ... 5787 files and directories currently installed.) Preparing to unpack .../python3-lib2to3_3.6.9-1~18.04_all.deb ... Unpacking python3-lib2to3 (3.6.9-1~18.04) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../python3-distutils_3.6.9-1~18.04_all.deb ... Unpacking python3-distutils (3.6.9-1~18.04) ... Selecting previously unselected package dh-python. Preparing to unpack .../dh-python_3.20180325ubuntu2_all.deb ... Unpacking dh-python (3.20180325ubuntu2) ... Setting up python3-lib2to3 (3.6.9-1~18.04) ... Setting up python3-distutils (3.6.9-1~18.04) ... Setting up dh-python (3.20180325ubuntu2) ... Invoking 'apt-get clean' Removing intermediate container d1e63530420e ---> da1a406de1ee Step 25/33 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential ---> Running in 02816a017592 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y ccache gcc build-essential' Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 dpkg-dev fakeroot g++ g++-7 gcc-7 gcc-7-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan4 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 libgdbm5 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0 linux-libc-dev make manpages manpages-dev netbase patch perl perl-modules-5.26 Suggested packages: binutils-doc distcc cpp-doc gcc-7-locales debian-keyring g++-multilib g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc git bzr gdbm-l10n libstdc++-7-doc make-doc man-browser ed diffutils-doc perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl The following NEW packages will be installed: binutils binutils-common binutils-x86-64-linux-gnu build-essential ccache cpp cpp-7 dpkg-dev fakeroot g++ g++-7 gcc gcc-7 gcc-7-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan4 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 libgdbm5 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0 linux-libc-dev make manpages manpages-dev netbase patch perl perl-modules-5.26 0 upgraded, 51 newly installed, 0 to remove and 18 not upgraded. Need to get 45.4 MB of archives. After this operation, 206 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.3 [2,763 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.3 [3,527 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.3 [201 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.2 [193 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.2 [503 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.2 [1,856 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.2 [3,396 B] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc-dev-bin amd64 2.27-3ubuntu1 [71.8 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-76.86 [999 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc6-dev amd64 2.27-3ubuntu1 [2,587 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.4.0-1ubuntu1~18.04.1 [18.9 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.4.0-1ubuntu1~18.04.1 [6,742 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.3.0-6ubuntu1~18.04.1 [47.4 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.3.0-6ubuntu1~18.04.1 [76.4 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.3.0-6ubuntu1~18.04.1 [28.0 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.3.0-6ubuntu1~18.04.1 [9,184 B] Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.4.0-1ubuntu1~18.04.1 [359 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.3.0-6ubuntu1~18.04.1 [288 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.4.0-1ubuntu1~18.04.1 [126 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.4.0-1ubuntu1~18.04.1 [42.5 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.3.0-6ubuntu1~18.04.1 [11.6 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [2,381 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.4.0-1ubuntu1~18.04.1 [7,463 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [1,468 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.4.0-1ubuntu1~18.04.1 [7,574 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 ccache amd64 3.4.1-1 [110 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 45.4 MB in 1s (38.4 MB/s) Selecting previously unselected package liblocale-gettext-perl. (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 ... 6240 files and directories currently installed.) Preparing to unpack .../00-liblocale-gettext-perl_1.07-3build2_amd64.deb ... Unpacking liblocale-gettext-perl (1.07-3build2) ... Selecting previously unselected package perl-modules-5.26. Preparing to unpack .../01-perl-modules-5.26_5.26.1-6ubuntu0.3_all.deb ... Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package libgdbm5:amd64. Preparing to unpack .../02-libgdbm5_1.14.1-6_amd64.deb ... Unpacking libgdbm5:amd64 (1.14.1-6) ... Selecting previously unselected package libgdbm-compat4:amd64. Preparing to unpack .../03-libgdbm-compat4_1.14.1-6_amd64.deb ... Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... Selecting previously unselected package libperl5.26:amd64. Preparing to unpack .../04-libperl5.26_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package perl. Preparing to unpack .../05-perl_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking perl (5.26.1-6ubuntu0.3) ... Selecting previously unselected package netbase. Preparing to unpack .../06-netbase_5.4_all.deb ... Unpacking netbase (5.4) ... Selecting previously unselected package manpages. Preparing to unpack .../07-manpages_4.15-1_all.deb ... Unpacking manpages (4.15-1) ... Selecting previously unselected package binutils-common:amd64. Preparing to unpack .../08-binutils-common_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package libbinutils:amd64. Preparing to unpack .../09-libbinutils_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package binutils-x86-64-linux-gnu. Preparing to unpack .../10-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package binutils. Preparing to unpack .../11-binutils_2.30-21ubuntu1~18.04.2_amd64.deb ... Unpacking binutils (2.30-21ubuntu1~18.04.2) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../12-libc-dev-bin_2.27-3ubuntu1_amd64.deb ... Unpacking libc-dev-bin (2.27-3ubuntu1) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../13-linux-libc-dev_4.15.0-76.86_amd64.deb ... Unpacking linux-libc-dev:amd64 (4.15.0-76.86) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../14-libc6-dev_2.27-3ubuntu1_amd64.deb ... Unpacking libc6-dev:amd64 (2.27-3ubuntu1) ... Selecting previously unselected package gcc-7-base:amd64. Preparing to unpack .../15-gcc-7-base_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package libisl19:amd64. Preparing to unpack .../16-libisl19_0.19-1_amd64.deb ... Unpacking libisl19:amd64 (0.19-1) ... Selecting previously unselected package libmpfr6:amd64. Preparing to unpack .../17-libmpfr6_4.0.1-1_amd64.deb ... Unpacking libmpfr6:amd64 (4.0.1-1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../18-libmpc3_1.1.0-1_amd64.deb ... Unpacking libmpc3:amd64 (1.1.0-1) ... Selecting previously unselected package cpp-7. Preparing to unpack .../19-cpp-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking cpp-7 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package cpp. Preparing to unpack .../20-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking cpp (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libcc1-0:amd64. Preparing to unpack .../21-libcc1-0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../22-libgomp1_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../23-libitm1_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../24-libatomic1_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libasan4:amd64. Preparing to unpack .../25-libasan4_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package liblsan0:amd64. Preparing to unpack .../26-liblsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../27-libtsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libubsan0:amd64. Preparing to unpack .../28-libubsan0_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package libcilkrts5:amd64. Preparing to unpack .../29-libcilkrts5_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package libmpx2:amd64. Preparing to unpack .../30-libmpx2_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../31-libquadmath0_8.3.0-6ubuntu1~18.04.1_amd64.deb ... Unpacking libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Selecting previously unselected package libgcc-7-dev:amd64. Preparing to unpack .../32-libgcc-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package gcc-7. Preparing to unpack .../33-gcc-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking gcc-7 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package gcc. Preparing to unpack .../34-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking gcc (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libstdc++-7-dev:amd64. Preparing to unpack .../35-libstdc++-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking libstdc++-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package g++-7. Preparing to unpack .../36-g++-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ... Unpacking g++-7 (7.4.0-1ubuntu1~18.04.1) ... Selecting previously unselected package g++. Preparing to unpack .../37-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking g++ (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package make. Preparing to unpack .../38-make_4.1-9.1ubuntu1_amd64.deb ... Unpacking make (4.1-9.1ubuntu1) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../39-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... Selecting previously unselected package patch. Preparing to unpack .../40-patch_2.7.6-2ubuntu1.1_amd64.deb ... Unpacking patch (2.7.6-2ubuntu1.1) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../41-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... Selecting previously unselected package build-essential. Preparing to unpack .../42-build-essential_12.4ubuntu1_amd64.deb ... Unpacking build-essential (12.4ubuntu1) ... Selecting previously unselected package ccache. Preparing to unpack .../43-ccache_3.4.1-1_amd64.deb ... Unpacking ccache (3.4.1-1) ... Selecting previously unselected package libfakeroot:amd64. Preparing to unpack .../44-libfakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../45-fakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking fakeroot (1.22-2ubuntu1) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../46-libalgorithm-diff-perl_1.19.03-1_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-1) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../47-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-5) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../48-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../49-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... Unpacking libfile-fcntllock-perl (0.22-3build2) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../50-manpages-dev_4.15-1_all.deb ... Unpacking manpages-dev (4.15-1) ... Setting up libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up manpages (4.15-1) ... Setting up libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up ccache (3.4.1-1) ... Updating symlinks in /usr/lib/ccache ... Setting up make (4.1-9.1ubuntu1) ... Setting up libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up linux-libc-dev:amd64 (4.15.0-76.86) ... Setting up libmpfr6:amd64 (4.0.1-1) ... Setting up perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Setting up libgdbm5:amd64 (1.14.1-6) ... Setting up liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ... Setting up libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up patch (2.7.6-2ubuntu1.1) ... Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... Setting up liblocale-gettext-perl (1.07-3build2) ... Setting up libmpc3:amd64 (1.1.0-1) ... Setting up libc-dev-bin (2.27-3ubuntu1) ... Setting up libgdbm-compat4:amd64 (1.14.1-6) ... Setting up manpages-dev (4.15-1) ... Setting up libc6-dev:amd64 (2.27-3ubuntu1) ... Setting up libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ... Setting up netbase (5.4) ... Setting up libisl19:amd64 (0.19-1) ... Setting up libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ... Setting up libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up fakeroot (1.22-2ubuntu1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist Setting up libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up cpp-7 (7.4.0-1ubuntu1~18.04.1) ... Setting up libstdc++-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ... Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ... Setting up cpp (4:7.4.0-1ubuntu2.3) ... Setting up perl (5.26.1-6ubuntu0.3) ... Setting up libfile-fcntllock-perl (0.22-3build2) ... Setting up libalgorithm-diff-perl (1.19.03-1) ... Setting up binutils (2.30-21ubuntu1~18.04.2) ... Setting up gcc-7 (7.4.0-1ubuntu1~18.04.1) ... Setting up g++-7 (7.4.0-1ubuntu1~18.04.1) ... Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... Setting up gcc (4:7.4.0-1ubuntu2.3) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... Setting up libalgorithm-diff-xs-perl (0.04-5) ... Setting up g++ (4:7.4.0-1ubuntu2.3) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist Setting up build-essential (12.4ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Invoking 'apt-get clean' Removing intermediate container 02816a017592 ---> 2c32fe5d4f23 Step 26/33 : RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src ---> Running in 3d462ae40581 apt-src: 0.25.2 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Hit:8 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes apt-src' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: libapt-pkg-perl sudo The following NEW packages will be installed: apt-src libapt-pkg-perl sudo 0 upgraded, 3 newly installed, 0 to remove and 18 not upgraded. Need to get 526 kB of archives. After this operation, 2,062 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.2 [427 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/universe amd64 apt-src all 0.25.2 [31.1 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 526 kB in 0s (7,720 kB/s) Selecting previously unselected package sudo. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13954 files and directories currently installed.) Preparing to unpack .../sudo_1.8.21p2-3ubuntu1.2_amd64.deb ... Unpacking sudo (1.8.21p2-3ubuntu1.2) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../libapt-pkg-perl_0.1.33build1_amd64.deb ... Unpacking libapt-pkg-perl (0.1.33build1) ... Selecting previously unselected package apt-src. Preparing to unpack .../apt-src_0.25.2_all.deb ... Unpacking apt-src (0.25.2) ... Setting up libapt-pkg-perl (0.1.33build1) ... Setting up apt-src (0.25.2) ... Setting up sudo (1.8.21p2-3ubuntu1.2) ... Invoking 'apt-get clean' Removing intermediate container 3d462ae40581 ---> a7663ec9e6a7 Step 27/33 : RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper ---> Running in b85cba373494 debhelper: 12.1.1ubuntu1~ubuntu18.04.1 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes debhelper' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libarchive-cpio-perl libarchive-zip-perl libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info xdg-user-dirs Suggested packages: autoconf-archive gnu-standards autoconf-doc wamerican | wordlist whois vacation dh-make dwz gettext-doc libasprintf-dev libgettextpo-dev groff krb5-doc krb5-user libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc apparmor less www-browser libmail-box-perl The following NEW packages will be installed: autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl debhelper dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libarchive-cpio-perl libarchive-zip-perl libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info xdg-user-dirs 0 upgraded, 48 newly installed, 0 to remove and 18 not upgraded. Need to get 19.5 MB of archives. After this operation, 70.7 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.5 [613 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 ca-certificates all 20180409 [151 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.4 [1,169 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.4 [4,496 B] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu60 amd64 60.2-3ubuntu3 [8,054 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.1 [13.5 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.1 [30.9 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.1 [85.6 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.1 [279 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.1 [122 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 autopoint all 0.19.8.1-6ubuntu0.3 [426 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.8 [214 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.8 [159 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-autoreconf all 17 [15.8 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-stripnondeterminism-perl all 0.040-1.1~build1 [13.8 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-strip-nondeterminism all 0.040-1.1~build1 [5,208 B] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 po-debconf all 1.0.20 [232 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debhelper all 11.1.6ubuntu2 [902 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 19.5 MB in 1s (29.9 MB/s) Selecting previously unselected package libbsd0:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 14049 files and directories currently installed.) Preparing to unpack .../00-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Selecting previously unselected package bsdmainutils. Preparing to unpack .../01-bsdmainutils_11.1.2ubuntu1_amd64.deb ... Unpacking bsdmainutils (11.1.2ubuntu1) ... Selecting previously unselected package groff-base. Preparing to unpack .../02-groff-base_1.22.3-10_amd64.deb ... Unpacking groff-base (1.22.3-10) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../03-libpipeline1_1.5.0-1_amd64.deb ... Unpacking libpipeline1:amd64 (1.5.0-1) ... Selecting previously unselected package man-db. Preparing to unpack .../04-man-db_2.8.3-2ubuntu0.1_amd64.deb ... Unpacking man-db (2.8.3-2ubuntu0.1) ... Selecting previously unselected package openssl. Preparing to unpack .../05-openssl_1.1.1-1ubuntu2.1~18.04.5_amd64.deb ... Unpacking openssl (1.1.1-1ubuntu2.1~18.04.5) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../06-ca-certificates_20180409_all.deb ... Unpacking ca-certificates (20180409) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../07-libglib2.0-0_2.56.4-0ubuntu0.18.04.4_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../08-libglib2.0-data_2.56.4-0ubuntu0.18.04.4_all.deb ... Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libicu60:amd64. Preparing to unpack .../09-libicu60_60.2-3ubuntu3_amd64.deb ... Unpacking libicu60:amd64 (60.2-3ubuntu3) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../10-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../11-shared-mime-info_1.9-2_amd64.deb ... Unpacking shared-mime-info (1.9-2) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../12-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... Unpacking xdg-user-dirs (0.17-1ubuntu1) ... Selecting previously unselected package gettext-base. Preparing to unpack .../13-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../14-krb5-locales_1.16-2ubuntu0.1_all.deb ... Unpacking krb5-locales (1.16-2ubuntu0.1) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../15-libkrb5support0_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../16-libk5crypto3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../17-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../18-libkrb5-3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../19-libgssapi-krb5-2_1.16-2ubuntu0.1_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../20-libpsl5_0.19.1-5build1_amd64.deb ... Unpacking libpsl5:amd64 (0.19.1-5build1) ... Selecting previously unselected package publicsuffix. Preparing to unpack .../21-publicsuffix_20180223.1310-1_all.deb ... Unpacking publicsuffix (20180223.1310-1) ... Selecting previously unselected package libsigsegv2:amd64. Preparing to unpack .../22-libsigsegv2_2.12-1_amd64.deb ... Unpacking libsigsegv2:amd64 (2.12-1) ... Selecting previously unselected package m4. Preparing to unpack .../23-m4_1.4.18-1_amd64.deb ... Unpacking m4 (1.4.18-1) ... Selecting previously unselected package autoconf. Preparing to unpack .../24-autoconf_2.69-11_all.deb ... Unpacking autoconf (2.69-11) ... Selecting previously unselected package autotools-dev. Preparing to unpack .../25-autotools-dev_20180224.1_all.deb ... Unpacking autotools-dev (20180224.1) ... Selecting previously unselected package automake. Preparing to unpack .../26-automake_1%3a1.15.1-3ubuntu2_all.deb ... Unpacking automake (1:1.15.1-3ubuntu2) ... Selecting previously unselected package autopoint. Preparing to unpack .../27-autopoint_0.19.8.1-6ubuntu0.3_all.deb ... Unpacking autopoint (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../28-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../29-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Selecting previously unselected package libcurl4:amd64. Preparing to unpack .../30-libcurl4_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Selecting previously unselected package curl. Preparing to unpack .../31-curl_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking curl (7.58.0-2ubuntu3.8) ... Selecting previously unselected package libtool. Preparing to unpack .../32-libtool_2.4.6-2_all.deb ... Unpacking libtool (2.4.6-2) ... Selecting previously unselected package dh-autoreconf. Preparing to unpack .../33-dh-autoreconf_17_all.deb ... Unpacking dh-autoreconf (17) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../34-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... Selecting previously unselected package libfile-stripnondeterminism-perl. Preparing to unpack .../35-libfile-stripnondeterminism-perl_0.040-1.1~build1_all.deb ... Unpacking libfile-stripnondeterminism-perl (0.040-1.1~build1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../36-libtimedate-perl_2.3000-2_all.deb ... Unpacking libtimedate-perl (2.3000-2) ... Selecting previously unselected package dh-strip-nondeterminism. Preparing to unpack .../37-dh-strip-nondeterminism_0.040-1.1~build1_all.deb ... Unpacking dh-strip-nondeterminism (0.040-1.1~build1) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../38-libcroco3_0.6.12-2_amd64.deb ... Unpacking libcroco3:amd64 (0.6.12-2) ... Selecting previously unselected package gettext. Preparing to unpack .../39-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../40-intltool-debian_0.35.0+20060710.4_all.deb ... Unpacking intltool-debian (0.35.0+20060710.4) ... Selecting previously unselected package po-debconf. Preparing to unpack .../41-po-debconf_1.0.20_all.deb ... Unpacking po-debconf (1.0.20) ... Selecting previously unselected package debhelper. Preparing to unpack .../42-debhelper_11.1.6ubuntu2_all.deb ... Unpacking debhelper (11.1.6ubuntu2) ... Selecting previously unselected package libarchive-cpio-perl. Preparing to unpack .../43-libarchive-cpio-perl_0.10-1_all.deb ... Unpacking libarchive-cpio-perl (0.10-1) ... Selecting previously unselected package libltdl7:amd64. Preparing to unpack .../44-libltdl7_2.4.6-2_amd64.deb ... Unpacking libltdl7:amd64 (2.4.6-2) ... Selecting previously unselected package libltdl-dev:amd64. Preparing to unpack .../45-libltdl-dev_2.4.6-2_amd64.deb ... Unpacking libltdl-dev:amd64 (2.4.6-2) ... Selecting previously unselected package libsys-hostname-long-perl. Preparing to unpack .../46-libsys-hostname-long-perl_1.5-1_all.deb ... Unpacking libsys-hostname-long-perl (1.5-1) ... Selecting previously unselected package libmail-sendmail-perl. Preparing to unpack .../47-libmail-sendmail-perl_0.80-1_all.deb ... Unpacking libmail-sendmail-perl (0.80-1) ... Setting up libicu60:amd64 (60.2-3ubuntu3) ... Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Setting up libtimedate-perl (2.3000-2) ... Setting up libsigsegv2:amd64 (2.12-1) ... Setting up libpsl5:amd64 (0.19.1-5build1) ... Setting up groff-base (1.22.3-10) ... Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ... No schema files found: doing nothing. Setting up libarchive-cpio-perl (0.10-1) ... Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... Setting up libpipeline1:amd64 (1.5.0-1) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Setting up m4 (1.4.18-1) ... Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Setting up libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Setting up libcroco3:amd64 (0.6.12-2) ... Setting up libsys-hostname-long-perl (1.5-1) ... Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ... Setting up libmail-sendmail-perl (0.80-1) ... Setting up krb5-locales (1.16-2ubuntu0.1) ... Setting up publicsuffix (20180223.1310-1) ... Setting up autotools-dev (20180224.1) ... Setting up libltdl7:amd64 (2.4.6-2) ... Setting up openssl (1.1.1-1ubuntu2.1~18.04.5) ... Setting up shared-mime-info (1.9-2) ... Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Setting up bsdmainutils (11.1.2ubuntu1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist Setting up ca-certificates (20180409) ... Updating certificates in /etc/ssl/certs... 133 added, 0 removed; done. Setting up xdg-user-dirs (0.17-1ubuntu1) ... Setting up autopoint (0.19.8.1-6ubuntu0.3) ... Setting up libfile-stripnondeterminism-perl (0.040-1.1~build1) ... Setting up libtool (2.4.6-2) ... Setting up libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Setting up libltdl-dev:amd64 (2.4.6-2) ... Setting up gettext (0.19.8.1-6ubuntu0.3) ... Setting up autoconf (2.69-11) ... Setting up intltool-debian (0.35.0+20060710.4) ... Setting up automake (1:1.15.1-3ubuntu2) ... update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.15.1.gz (of link group automake) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.15.1.gz (of link group automake) doesn't exist Setting up man-db (2.8.3-2ubuntu0.1) ... Building database of manual pages ... Setting up libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Setting up po-debconf (1.0.20) ... Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Setting up libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Setting up curl (7.58.0-2ubuntu3.8) ... Setting up dh-autoreconf (17) ... Setting up debhelper (11.1.6ubuntu2) ... Setting up dh-strip-nondeterminism (0.040-1.1~build1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for ca-certificates (20180409) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Invoking 'apt-get clean' Removing intermediate container b85cba373494 ---> 539a1ca69cbd Step 28/33 : RUN echo "default-jdk: 2:1.11-68ubuntu1~18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes default-jdk ---> Running in 41e73a405c57 default-jdk: 2:1.11-68ubuntu1~18.04.1 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:8 http://packages.ros.org/ros/ubuntu bionic InRelease Hit:9 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes default-jdk' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: at-spi2-core ca-certificates-java dbus default-jdk-headless default-jre default-jre-headless fontconfig-config fonts-dejavu-core fonts-dejavu-extra java-common libapparmor1 libasound2 libasound2-data libatk-bridge2.0-0 libatk-wrapper-java libatk-wrapper-java-jni libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libcups2 libdbus-1-3 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libelf1 libfontconfig1 libfontenc1 libfreetype6 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libice-dev libice6 libjpeg-turbo8 libjpeg8 liblcms2-2 libllvm9 libnspr4 libnss3 libpciaccess0 libpcsclite1 libpng16-16 libpthread-stubs0-dev libsensors4 libsm-dev libsm6 libx11-6 libx11-data libx11-dev libx11-doc libx11-xcb1 libxau-dev libxau6 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-shape0 libxcb-sync1 libxcb1 libxcb1-dev libxcomposite1 libxdamage1 libxdmcp-dev libxdmcp6 libxext6 libxfixes3 libxft2 libxi6 libxinerama1 libxmu6 libxmuu1 libxpm4 libxrandr2 libxrender1 libxshmfence1 libxt-dev libxt6 libxtst6 libxv1 libxxf86dga1 libxxf86vm1 multiarch-support openjdk-11-jdk openjdk-11-jdk-headless openjdk-11-jre openjdk-11-jre-headless ucf x11-common x11-utils x11proto-core-dev x11proto-dev xorg-sgml-doctools xtrans-dev Suggested packages: default-dbus-session-bus | dbus-session-bus libasound2-plugins alsa-utils cups-common libice-doc liblcms2-utils pciutils pcscd lm-sensors libsm-doc libxcb-doc libxt-doc openjdk-11-demo openjdk-11-source visualvm libnss-mdns fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei | fonts-wqy-zenhei fonts-indic mesa-utils The following NEW packages will be installed: at-spi2-core ca-certificates-java dbus default-jdk default-jdk-headless default-jre default-jre-headless fontconfig-config fonts-dejavu-core fonts-dejavu-extra java-common libapparmor1 libasound2 libasound2-data libatk-bridge2.0-0 libatk-wrapper-java libatk-wrapper-java-jni libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libcups2 libdbus-1-3 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libelf1 libfontconfig1 libfontenc1 libfreetype6 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libice-dev libice6 libjpeg-turbo8 libjpeg8 liblcms2-2 libllvm9 libnspr4 libnss3 libpciaccess0 libpcsclite1 libpng16-16 libpthread-stubs0-dev libsensors4 libsm-dev libsm6 libx11-6 libx11-data libx11-dev libx11-doc libx11-xcb1 libxau-dev libxau6 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-shape0 libxcb-sync1 libxcb1 libxcb1-dev libxcomposite1 libxdamage1 libxdmcp-dev libxdmcp6 libxext6 libxfixes3 libxft2 libxi6 libxinerama1 libxmu6 libxmuu1 libxpm4 libxrandr2 libxrender1 libxshmfence1 libxt-dev libxt6 libxtst6 libxv1 libxxf86dga1 libxxf86vm1 multiarch-support openjdk-11-jdk openjdk-11-jdk-headless openjdk-11-jre openjdk-11-jre-headless ucf x11-common x11-utils x11proto-core-dev x11proto-dev xorg-sgml-doctools xtrans-dev 0 upgraded, 107 newly installed, 0 to remove and 18 not upgraded. Need to get 269 MB of archives. After this operation, 734 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 multiarch-support amd64 2.27-3ubuntu1 [6,916 B] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau6 amd64 1:1.0.8-1 [8,376 B] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.2 [113 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.2 [569 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.3 [110 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 x11-common all 1:7.7+19ubuntu7.1 [22.5 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libice6 amd64 2:1.0.9-2 [40.2 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsm6 amd64 2:1.2.2-1 [15.8 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 fonts-dejavu-core all 2.37-1 [1,041 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 fontconfig-config all 2.12.6-0ubuntu2 [55.8 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfontconfig1 amd64 2.12.6-0ubuntu2 [137 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrender1 amd64 1:0.9.10-1 [18.7 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxft2 amd64 2.3.2-1 [36.1 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxinerama1 amd64 2:1.1.3-1 [7,908 B] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxxf86dga1 amd64 2:1.1.4-1 [13.7 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxxf86vm1 amd64 1:1.1.4-1 [10.6 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapparmor1 amd64 2.12-4ubuntu5.1 [31.3 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdbus-1-3 amd64 1.12.2-1ubuntu1.1 [175 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dbus amd64 1.12.2-1ubuntu1.1 [150 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libelf1 amd64 0.170-0.4ubuntu0.1 [44.8 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-common all 2.4.99-1ubuntu1~18.04.2 [5,328 B] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm2 amd64 2.4.99-1ubuntu1~18.04.2 [31.7 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmuu1 amd64 2:1.1.2-2 [9,674 B] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatspi2.0-0 amd64 2.28.0-1 [59.6 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxtst6 amd64 2:1.2.3-1 [12.8 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 at-spi2-core amd64 2.28.0-1 [47.9 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 java-common all 0.68ubuntu1~18.04.1 [14.5 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-common-data amd64 0.7-3.1ubuntu1.2 [22.1 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-common3 amd64 0.7-3.1ubuntu1.2 [21.6 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-client3 amd64 0.7-3.1ubuntu1.2 [25.2 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcups2 amd64 2.2.7-1ubuntu2.7 [211 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnspr4 amd64 2:4.18-1ubuntu1 [112 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnss3 amd64 2:3.35-2ubuntu2.7 [1,135 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasound2-data all 1.1.3-5ubuntu0.2 [36.5 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasound2 amd64 1.1.3-5ubuntu0.2 [359 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcsclite1 amd64 1.8.23-1 [21.3 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxi6 amd64 2:1.7.9-1 [29.2 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openjdk-11-jre-headless amd64 11.0.6+10-1ubuntu1~18.04.1 [37.5 MB] Get:48 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 default-jre-headless amd64 2:1.11-68ubuntu1~18.04.1 [10.9 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates-java all 20180516ubuntu1~18.04.1 [12.2 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglvnd0 amd64 1.0.0-2ubuntu2.3 [47.0 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglapi-mesa amd64 19.2.8-0ubuntu0~18.04.2 [26.5 kB] Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-xcb1 amd64 2:1.6.4-3ubuntu0.2 [9,376 B] Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri2-0 amd64 1.13-2~ubuntu18.04 [6,920 B] Get:54 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri3-0 amd64 1.13-2~ubuntu18.04 [6,568 B] Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-glx0 amd64 1.13-2~ubuntu18.04 [22.1 kB] Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-present0 amd64 1.13-2~ubuntu18.04 [5,552 B] Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-sync1 amd64 1.13-2~ubuntu18.04 [8,808 B] Get:58 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdamage1 amd64 1:1.1.4-3 [6,934 B] Get:59 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxfixes3 amd64 1:5.0.3-1 [10.8 kB] Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxshmfence1 amd64 1.3-1 [5,028 B] Get:61 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-amdgpu1 amd64 2.4.99-1ubuntu1~18.04.2 [18.2 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpciaccess0 amd64 0.14-1 [17.9 kB] Get:63 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-intel1 amd64 2.4.99-1ubuntu1~18.04.2 [59.9 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-nouveau2 amd64 2.4.99-1ubuntu1~18.04.2 [16.5 kB] Get:65 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-radeon1 amd64 2.4.99-1ubuntu1~18.04.2 [21.7 kB] Get:66 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libllvm9 amd64 1:9-2~ubuntu18.04.2 [14.8 MB] Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsensors4 amd64 1:3.4.0-4 [28.8 kB] Get:68 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1-mesa-dri amd64 19.2.8-0ubuntu0~18.04.2 [8,811 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglx-mesa0 amd64 19.2.8-0ubuntu0~18.04.2 [139 kB] Get:70 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglx0 amd64 1.0.0-2ubuntu2.3 [28.1 kB] Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1 amd64 1.0.0-2ubuntu2.3 [86.2 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgif7 amd64 5.1.4-2ubuntu0.1 [30.9 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openjdk-11-jre amd64 11.0.6+10-1ubuntu1~18.04.1 [34.5 kB] Get:74 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 default-jre amd64 2:1.11-68ubuntu1~18.04.1 [1,076 B] Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openjdk-11-jdk-headless amd64 11.0.6+10-1ubuntu1~18.04.1 [193 MB] Get:76 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 default-jdk-headless amd64 2:1.11-68ubuntu1~18.04.1 [1,132 B] Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openjdk-11-jdk amd64 11.0.6+10-1ubuntu1~18.04.1 [2,213 kB] Get:78 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 default-jdk amd64 2:1.11-68ubuntu1~18.04.1 [1,092 B] Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 fonts-dejavu-extra all 2.37-1 [1,953 kB] Get:80 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-data all 2.28.1-1 [2,992 B] Get:81 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-0 amd64 2.28.1-1 [43.9 kB] Get:82 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk-bridge2.0-0 amd64 2.26.2-1 [57.3 kB] Get:83 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfontenc1 amd64 1:1.1.3-1 [13.9 kB] Get:84 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxt6 amd64 1:1.1.5-1 [160 kB] Get:85 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmu6 amd64 2:1.1.2-2 [46.0 kB] Get:86 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxpm4 amd64 1:3.5.12-1 [34.0 kB] Get:87 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxaw7 amd64 2:1.0.13-1 [173 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shape0 amd64 1.13-2~ubuntu18.04 [5,972 B] Get:89 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcomposite1 amd64 1:0.4.4-2 [6,988 B] Get:90 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrandr2 amd64 2:1.5.1-1 [18.1 kB] Get:91 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxv1 amd64 2:1.0.11-1 [10.7 kB] Get:92 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11-utils amd64 7.7+3build1 [196 kB] Get:93 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk-wrapper-java all 0.33.3-20ubuntu0.1 [34.7 kB] Get:94 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk-wrapper-java-jni amd64 0.33.3-20ubuntu0.1 [28.3 kB] Get:95 http://archive.ubuntu.com/ubuntu bionic/main amd64 xorg-sgml-doctools all 1:1.11-1 [12.9 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-dev all 2018.4-4 [251 kB] Get:97 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-core-dev all 2018.4-4 [2,620 B] Get:98 http://archive.ubuntu.com/ubuntu bionic/main amd64 libice-dev amd64 2:1.0.9-2 [46.8 kB] Get:99 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpthread-stubs0-dev amd64 0.3-4 [4,068 B] Get:100 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsm-dev amd64 2:1.2.2-1 [16.2 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau-dev amd64 1:1.0.8-1 [11.1 kB] Get:102 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [25.1 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic/main amd64 xtrans-dev all 1.3.5-1 [70.5 kB] Get:104 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1-dev amd64 1.13-2~ubuntu18.04 [80.0 kB] Get:105 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-dev amd64 2:1.6.4-3ubuntu0.2 [640 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-doc all 2:1.6.4-3ubuntu0.2 [2,065 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxt-dev amd64 1:1.1.5-1 [395 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 269 MB in 11s (23.4 MB/s) Selecting previously unselected package multiarch-support. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 16742 files and directories currently installed.) Preparing to unpack .../multiarch-support_2.27-3ubuntu1_amd64.deb ... Unpacking multiarch-support (2.27-3ubuntu1) ... Setting up multiarch-support (2.27-3ubuntu1) ... Selecting previously unselected package libxau6:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 16745 files and directories currently installed.) Preparing to unpack .../000-libxau6_1%3a1.0.8-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.8-1) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../001-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../002-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libx11-data. Preparing to unpack .../003-libx11-data_2%3a1.6.4-3ubuntu0.2_all.deb ... Unpacking libx11-data (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../004-libx11-6_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../005-libxext6_2%3a1.3.3-1_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.3-1) ... Selecting previously unselected package libjpeg-turbo8:amd64. Preparing to unpack .../006-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.3_amd64.deb ... Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Selecting previously unselected package x11-common. Preparing to unpack .../007-x11-common_1%3a7.7+19ubuntu7.1_all.deb ... dpkg-query: no packages found matching nux-tools Unpacking x11-common (1:7.7+19ubuntu7.1) ... Selecting previously unselected package libice6:amd64. Preparing to unpack .../008-libice6_2%3a1.0.9-2_amd64.deb ... Unpacking libice6:amd64 (2:1.0.9-2) ... Selecting previously unselected package libsm6:amd64. Preparing to unpack .../009-libsm6_2%3a1.2.2-1_amd64.deb ... Unpacking libsm6:amd64 (2:1.2.2-1) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../010-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../011-libfreetype6_2.8.1-2ubuntu2_amd64.deb ... Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ... Selecting previously unselected package ucf. Preparing to unpack .../012-ucf_3.0038_all.deb ... Moving old data out of the way Unpacking ucf (3.0038) ... Selecting previously unselected package fonts-dejavu-core. Preparing to unpack .../013-fonts-dejavu-core_2.37-1_all.deb ... Unpacking fonts-dejavu-core (2.37-1) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../014-fontconfig-config_2.12.6-0ubuntu2_all.deb ... Unpacking fontconfig-config (2.12.6-0ubuntu2) ... Selecting previously unselected package libfontconfig1:amd64. Preparing to unpack .../015-libfontconfig1_2.12.6-0ubuntu2_amd64.deb ... Unpacking libfontconfig1:amd64 (2.12.6-0ubuntu2) ... Selecting previously unselected package libxrender1:amd64. Preparing to unpack .../016-libxrender1_1%3a0.9.10-1_amd64.deb ... Unpacking libxrender1:amd64 (1:0.9.10-1) ... Selecting previously unselected package libxft2:amd64. Preparing to unpack .../017-libxft2_2.3.2-1_amd64.deb ... Unpacking libxft2:amd64 (2.3.2-1) ... Selecting previously unselected package libxinerama1:amd64. Preparing to unpack .../018-libxinerama1_2%3a1.1.3-1_amd64.deb ... Unpacking libxinerama1:amd64 (2:1.1.3-1) ... Selecting previously unselected package libxxf86dga1:amd64. Preparing to unpack .../019-libxxf86dga1_2%3a1.1.4-1_amd64.deb ... Unpacking libxxf86dga1:amd64 (2:1.1.4-1) ... Selecting previously unselected package libxxf86vm1:amd64. Preparing to unpack .../020-libxxf86vm1_1%3a1.1.4-1_amd64.deb ... Unpacking libxxf86vm1:amd64 (1:1.1.4-1) ... Selecting previously unselected package libapparmor1:amd64. Preparing to unpack .../021-libapparmor1_2.12-4ubuntu5.1_amd64.deb ... Unpacking libapparmor1:amd64 (2.12-4ubuntu5.1) ... Selecting previously unselected package libdbus-1-3:amd64. Preparing to unpack .../022-libdbus-1-3_1.12.2-1ubuntu1.1_amd64.deb ... Unpacking libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ... Selecting previously unselected package dbus. Preparing to unpack .../023-dbus_1.12.2-1ubuntu1.1_amd64.deb ... Unpacking dbus (1.12.2-1ubuntu1.1) ... Selecting previously unselected package libelf1:amd64. Preparing to unpack .../024-libelf1_0.170-0.4ubuntu0.1_amd64.deb ... Unpacking libelf1:amd64 (0.170-0.4ubuntu0.1) ... Selecting previously unselected package libdrm-common. Preparing to unpack .../025-libdrm-common_2.4.99-1ubuntu1~18.04.2_all.deb ... Unpacking libdrm-common (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm2:amd64. Preparing to unpack .../026-libdrm2_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libedit2:amd64. Preparing to unpack .../027-libedit2_3.1-20170329-1_amd64.deb ... Unpacking libedit2:amd64 (3.1-20170329-1) ... Selecting previously unselected package libxmuu1:amd64. Preparing to unpack .../028-libxmuu1_2%3a1.1.2-2_amd64.deb ... Unpacking libxmuu1:amd64 (2:1.1.2-2) ... Selecting previously unselected package libatspi2.0-0:amd64. Preparing to unpack .../029-libatspi2.0-0_2.28.0-1_amd64.deb ... Unpacking libatspi2.0-0:amd64 (2.28.0-1) ... Selecting previously unselected package libxtst6:amd64. Preparing to unpack .../030-libxtst6_2%3a1.2.3-1_amd64.deb ... Unpacking libxtst6:amd64 (2:1.2.3-1) ... Selecting previously unselected package at-spi2-core. Preparing to unpack .../031-at-spi2-core_2.28.0-1_amd64.deb ... Unpacking at-spi2-core (2.28.0-1) ... Selecting previously unselected package java-common. Preparing to unpack .../032-java-common_0.68ubuntu1~18.04.1_all.deb ... Unpacking java-common (0.68ubuntu1~18.04.1) ... Selecting previously unselected package libavahi-common-data:amd64. Preparing to unpack .../033-libavahi-common-data_0.7-3.1ubuntu1.2_amd64.deb ... Unpacking libavahi-common-data:amd64 (0.7-3.1ubuntu1.2) ... Selecting previously unselected package libavahi-common3:amd64. Preparing to unpack .../034-libavahi-common3_0.7-3.1ubuntu1.2_amd64.deb ... Unpacking libavahi-common3:amd64 (0.7-3.1ubuntu1.2) ... Selecting previously unselected package libavahi-client3:amd64. Preparing to unpack .../035-libavahi-client3_0.7-3.1ubuntu1.2_amd64.deb ... Unpacking libavahi-client3:amd64 (0.7-3.1ubuntu1.2) ... Selecting previously unselected package libcups2:amd64. Preparing to unpack .../036-libcups2_2.2.7-1ubuntu2.7_amd64.deb ... Unpacking libcups2:amd64 (2.2.7-1ubuntu2.7) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../037-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Selecting previously unselected package libjpeg8:amd64. Preparing to unpack .../038-libjpeg8_8c-2ubuntu8_amd64.deb ... Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... Selecting previously unselected package libnspr4:amd64. Preparing to unpack .../039-libnspr4_2%3a4.18-1ubuntu1_amd64.deb ... Unpacking libnspr4:amd64 (2:4.18-1ubuntu1) ... Selecting previously unselected package libnss3:amd64. Preparing to unpack .../040-libnss3_2%3a3.35-2ubuntu2.7_amd64.deb ... Unpacking libnss3:amd64 (2:3.35-2ubuntu2.7) ... Selecting previously unselected package libasound2-data. Preparing to unpack .../041-libasound2-data_1.1.3-5ubuntu0.2_all.deb ... Unpacking libasound2-data (1.1.3-5ubuntu0.2) ... Selecting previously unselected package libasound2:amd64. Preparing to unpack .../042-libasound2_1.1.3-5ubuntu0.2_amd64.deb ... Unpacking libasound2:amd64 (1.1.3-5ubuntu0.2) ... Selecting previously unselected package libpcsclite1:amd64. Preparing to unpack .../043-libpcsclite1_1.8.23-1_amd64.deb ... Unpacking libpcsclite1:amd64 (1.8.23-1) ... Selecting previously unselected package libxi6:amd64. Preparing to unpack .../044-libxi6_2%3a1.7.9-1_amd64.deb ... Unpacking libxi6:amd64 (2:1.7.9-1) ... Selecting previously unselected package openjdk-11-jre-headless:amd64. Preparing to unpack .../045-openjdk-11-jre-headless_11.0.6+10-1ubuntu1~18.04.1_amd64.deb ... Unpacking openjdk-11-jre-headless:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... Selecting previously unselected package default-jre-headless. Preparing to unpack .../046-default-jre-headless_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ... Unpacking default-jre-headless (2:1.11-68ubuntu1~18.04.1) ... Selecting previously unselected package ca-certificates-java. Preparing to unpack .../047-ca-certificates-java_20180516ubuntu1~18.04.1_all.deb ... Unpacking ca-certificates-java (20180516ubuntu1~18.04.1) ... Selecting previously unselected package libglvnd0:amd64. Preparing to unpack .../048-libglvnd0_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libglvnd0:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libglapi-mesa:amd64. Preparing to unpack .../049-libglapi-mesa_19.2.8-0ubuntu0~18.04.2_amd64.deb ... Unpacking libglapi-mesa:amd64 (19.2.8-0ubuntu0~18.04.2) ... Selecting previously unselected package libx11-xcb1:amd64. Preparing to unpack .../050-libx11-xcb1_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-xcb1:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxcb-dri2-0:amd64. Preparing to unpack .../051-libxcb-dri2-0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-dri2-0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-dri3-0:amd64. Preparing to unpack .../052-libxcb-dri3-0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-dri3-0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-glx0:amd64. Preparing to unpack .../053-libxcb-glx0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-glx0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-present0:amd64. Preparing to unpack .../054-libxcb-present0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-present0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-sync1:amd64. Preparing to unpack .../055-libxcb-sync1_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-sync1:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxdamage1:amd64. Preparing to unpack .../056-libxdamage1_1%3a1.1.4-3_amd64.deb ... Unpacking libxdamage1:amd64 (1:1.1.4-3) ... Selecting previously unselected package libxfixes3:amd64. Preparing to unpack .../057-libxfixes3_1%3a5.0.3-1_amd64.deb ... Unpacking libxfixes3:amd64 (1:5.0.3-1) ... Selecting previously unselected package libxshmfence1:amd64. Preparing to unpack .../058-libxshmfence1_1.3-1_amd64.deb ... Unpacking libxshmfence1:amd64 (1.3-1) ... Selecting previously unselected package libdrm-amdgpu1:amd64. Preparing to unpack .../059-libdrm-amdgpu1_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-amdgpu1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libpciaccess0:amd64. Preparing to unpack .../060-libpciaccess0_0.14-1_amd64.deb ... Unpacking libpciaccess0:amd64 (0.14-1) ... Selecting previously unselected package libdrm-intel1:amd64. Preparing to unpack .../061-libdrm-intel1_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-intel1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm-nouveau2:amd64. Preparing to unpack .../062-libdrm-nouveau2_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-nouveau2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm-radeon1:amd64. Preparing to unpack .../063-libdrm-radeon1_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-radeon1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libllvm9:amd64. Preparing to unpack .../064-libllvm9_1%3a9-2~ubuntu18.04.2_amd64.deb ... Unpacking libllvm9:amd64 (1:9-2~ubuntu18.04.2) ... Selecting previously unselected package libsensors4:amd64. Preparing to unpack .../065-libsensors4_1%3a3.4.0-4_amd64.deb ... Unpacking libsensors4:amd64 (1:3.4.0-4) ... Selecting previously unselected package libgl1-mesa-dri:amd64. Preparing to unpack .../066-libgl1-mesa-dri_19.2.8-0ubuntu0~18.04.2_amd64.deb ... Unpacking libgl1-mesa-dri:amd64 (19.2.8-0ubuntu0~18.04.2) ... Selecting previously unselected package libglx-mesa0:amd64. Preparing to unpack .../067-libglx-mesa0_19.2.8-0ubuntu0~18.04.2_amd64.deb ... Unpacking libglx-mesa0:amd64 (19.2.8-0ubuntu0~18.04.2) ... Selecting previously unselected package libglx0:amd64. Preparing to unpack .../068-libglx0_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libglx0:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libgl1:amd64. Preparing to unpack .../069-libgl1_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libgl1:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libgif7:amd64. Preparing to unpack .../070-libgif7_5.1.4-2ubuntu0.1_amd64.deb ... Unpacking libgif7:amd64 (5.1.4-2ubuntu0.1) ... Selecting previously unselected package openjdk-11-jre:amd64. Preparing to unpack .../071-openjdk-11-jre_11.0.6+10-1ubuntu1~18.04.1_amd64.deb ... Unpacking openjdk-11-jre:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... Selecting previously unselected package default-jre. Preparing to unpack .../072-default-jre_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ... Unpacking default-jre (2:1.11-68ubuntu1~18.04.1) ... Selecting previously unselected package openjdk-11-jdk-headless:amd64. Preparing to unpack .../073-openjdk-11-jdk-headless_11.0.6+10-1ubuntu1~18.04.1_amd64.deb ... Unpacking openjdk-11-jdk-headless:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... Selecting previously unselected package default-jdk-headless. Preparing to unpack .../074-default-jdk-headless_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ... Unpacking default-jdk-headless (2:1.11-68ubuntu1~18.04.1) ... Selecting previously unselected package openjdk-11-jdk:amd64. Preparing to unpack .../075-openjdk-11-jdk_11.0.6+10-1ubuntu1~18.04.1_amd64.deb ... Unpacking openjdk-11-jdk:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... Selecting previously unselected package default-jdk. Preparing to unpack .../076-default-jdk_2%3a1.11-68ubuntu1~18.04.1_amd64.deb ... Unpacking default-jdk (2:1.11-68ubuntu1~18.04.1) ... Selecting previously unselected package fonts-dejavu-extra. Preparing to unpack .../077-fonts-dejavu-extra_2.37-1_all.deb ... Unpacking fonts-dejavu-extra (2.37-1) ... Selecting previously unselected package libatk1.0-data. Preparing to unpack .../078-libatk1.0-data_2.28.1-1_all.deb ... Unpacking libatk1.0-data (2.28.1-1) ... Selecting previously unselected package libatk1.0-0:amd64. Preparing to unpack .../079-libatk1.0-0_2.28.1-1_amd64.deb ... Unpacking libatk1.0-0:amd64 (2.28.1-1) ... Selecting previously unselected package libatk-bridge2.0-0:amd64. Preparing to unpack .../080-libatk-bridge2.0-0_2.26.2-1_amd64.deb ... Unpacking libatk-bridge2.0-0:amd64 (2.26.2-1) ... Selecting previously unselected package libfontenc1:amd64. Preparing to unpack .../081-libfontenc1_1%3a1.1.3-1_amd64.deb ... Unpacking libfontenc1:amd64 (1:1.1.3-1) ... Selecting previously unselected package libxt6:amd64. Preparing to unpack .../082-libxt6_1%3a1.1.5-1_amd64.deb ... Unpacking libxt6:amd64 (1:1.1.5-1) ... Selecting previously unselected package libxmu6:amd64. Preparing to unpack .../083-libxmu6_2%3a1.1.2-2_amd64.deb ... Unpacking libxmu6:amd64 (2:1.1.2-2) ... Selecting previously unselected package libxpm4:amd64. Preparing to unpack .../084-libxpm4_1%3a3.5.12-1_amd64.deb ... Unpacking libxpm4:amd64 (1:3.5.12-1) ... Selecting previously unselected package libxaw7:amd64. Preparing to unpack .../085-libxaw7_2%3a1.0.13-1_amd64.deb ... Unpacking libxaw7:amd64 (2:1.0.13-1) ... Selecting previously unselected package libxcb-shape0:amd64. Preparing to unpack .../086-libxcb-shape0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-shape0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcomposite1:amd64. Preparing to unpack .../087-libxcomposite1_1%3a0.4.4-2_amd64.deb ... Unpacking libxcomposite1:amd64 (1:0.4.4-2) ... Selecting previously unselected package libxrandr2:amd64. Preparing to unpack .../088-libxrandr2_2%3a1.5.1-1_amd64.deb ... Unpacking libxrandr2:amd64 (2:1.5.1-1) ... Selecting previously unselected package libxv1:amd64. Preparing to unpack .../089-libxv1_2%3a1.0.11-1_amd64.deb ... Unpacking libxv1:amd64 (2:1.0.11-1) ... Selecting previously unselected package x11-utils. Preparing to unpack .../090-x11-utils_7.7+3build1_amd64.deb ... Unpacking x11-utils (7.7+3build1) ... Selecting previously unselected package libatk-wrapper-java. Preparing to unpack .../091-libatk-wrapper-java_0.33.3-20ubuntu0.1_all.deb ... Unpacking libatk-wrapper-java (0.33.3-20ubuntu0.1) ... Selecting previously unselected package libatk-wrapper-java-jni:amd64. Preparing to unpack .../092-libatk-wrapper-java-jni_0.33.3-20ubuntu0.1_amd64.deb ... Unpacking libatk-wrapper-java-jni:amd64 (0.33.3-20ubuntu0.1) ... Selecting previously unselected package xorg-sgml-doctools. Preparing to unpack .../093-xorg-sgml-doctools_1%3a1.11-1_all.deb ... Unpacking xorg-sgml-doctools (1:1.11-1) ... Selecting previously unselected package x11proto-dev. Preparing to unpack .../094-x11proto-dev_2018.4-4_all.deb ... Unpacking x11proto-dev (2018.4-4) ... Selecting previously unselected package x11proto-core-dev. Preparing to unpack .../095-x11proto-core-dev_2018.4-4_all.deb ... Unpacking x11proto-core-dev (2018.4-4) ... Selecting previously unselected package libice-dev:amd64. Preparing to unpack .../096-libice-dev_2%3a1.0.9-2_amd64.deb ... Unpacking libice-dev:amd64 (2:1.0.9-2) ... Selecting previously unselected package libpthread-stubs0-dev:amd64. Preparing to unpack .../097-libpthread-stubs0-dev_0.3-4_amd64.deb ... Unpacking libpthread-stubs0-dev:amd64 (0.3-4) ... Selecting previously unselected package libsm-dev:amd64. Preparing to unpack .../098-libsm-dev_2%3a1.2.2-1_amd64.deb ... Unpacking libsm-dev:amd64 (2:1.2.2-1) ... Selecting previously unselected package libxau-dev:amd64. Preparing to unpack .../099-libxau-dev_1%3a1.0.8-1_amd64.deb ... Unpacking libxau-dev:amd64 (1:1.0.8-1) ... Selecting previously unselected package libxdmcp-dev:amd64. Preparing to unpack .../100-libxdmcp-dev_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp-dev:amd64 (1:1.1.2-3) ... Selecting previously unselected package xtrans-dev. Preparing to unpack .../101-xtrans-dev_1.3.5-1_all.deb ... Unpacking xtrans-dev (1.3.5-1) ... Selecting previously unselected package libxcb1-dev:amd64. Preparing to unpack .../102-libxcb1-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb1-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libx11-dev:amd64. Preparing to unpack .../103-libx11-dev_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-dev:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-doc. Preparing to unpack .../104-libx11-doc_2%3a1.6.4-3ubuntu0.2_all.deb ... Unpacking libx11-doc (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxt-dev:amd64. Preparing to unpack .../105-libxt-dev_1%3a1.1.5-1_amd64.deb ... Unpacking libxt-dev:amd64 (1:1.1.5-1) ... Setting up libedit2:amd64 (3.1-20170329-1) ... Setting up libglvnd0:amd64 (1.0.0-2ubuntu2.3) ... Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Setting up libpcsclite1:amd64 (1.8.23-1) ... Setting up libpthread-stubs0-dev:amd64 (0.3-4) ... Setting up fonts-dejavu-core (2.37-1) ... Setting up libelf1:amd64 (0.170-0.4ubuntu0.1) ... Setting up libasound2-data (1.1.3-5ubuntu0.2) ... Setting up libxshmfence1:amd64 (1.3-1) ... Setting up xorg-sgml-doctools (1:1.11-1) ... Setting up java-common (0.68ubuntu1~18.04.1) ... Setting up libgif7:amd64 (5.1.4-2ubuntu0.1) ... Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Setting up libglapi-mesa:amd64 (19.2.8-0ubuntu0~18.04.2) ... Setting up libnspr4:amd64 (2:4.18-1ubuntu1) ... Setting up ucf (3.0038) ... Setting up x11proto-dev (2018.4-4) ... Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ... Setting up libasound2:amd64 (1.1.3-5ubuntu0.2) ... Setting up libdrm-common (2.4.99-1ubuntu1~18.04.2) ... Setting up libatk1.0-data (2.28.1-1) ... Setting up libx11-xcb1:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up xtrans-dev (1.3.5-1) ... Setting up libapparmor1:amd64 (2.12-4ubuntu5.1) ... Setting up libatk1.0-0:amd64 (2.28.1-1) ... Setting up libfontenc1:amd64 (1:1.1.3-1) ... Setting up libx11-doc (2:1.6.4-3ubuntu0.2) ... Setting up libpciaccess0:amd64 (0.14-1) ... Setting up libsensors4:amd64 (1:3.4.0-4) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up libllvm9:amd64 (1:9-2~ubuntu18.04.2) ... Setting up fonts-dejavu-extra (2.37-1) ... Setting up x11-common (1:7.7+19ubuntu7.1) ... update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up libx11-data (2:1.6.4-3ubuntu0.2) ... Setting up libxau6:amd64 (1:1.0.8-1) ... Setting up libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ... Setting up libavahi-common-data:amd64 (0.7-3.1ubuntu1.2) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up fontconfig-config (2.12.6-0ubuntu2) ... Setting up x11proto-core-dev (2018.4-4) ... Setting up libnss3:amd64 (2:3.35-2ubuntu2.7) ... Setting up libxau-dev:amd64 (1:1.0.8-1) ... Setting up libdrm2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libdrm-intel1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libxdmcp-dev:amd64 (1:1.1.2-3) ... Setting up libice6:amd64 (2:1.0.9-2) ... Setting up libavahi-common3:amd64 (0.7-3.1ubuntu1.2) ... Setting up libdrm-radeon1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up dbus (1.12.2-1ubuntu1.1) ... Setting up libdrm-nouveau2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-present0:amd64 (1.13-2~ubuntu18.04) ... Setting up libfontconfig1:amd64 (2.12.6-0ubuntu2) ... Setting up libxcb-dri2-0:amd64 (1.13-2~ubuntu18.04) ... Setting up libsm6:amd64 (2:1.2.2-1) ... Setting up libxcb-dri3-0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-glx0:amd64 (1.13-2~ubuntu18.04) ... Setting up libdrm-amdgpu1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libgl1-mesa-dri:amd64 (19.2.8-0ubuntu0~18.04.2) ... Setting up libxmuu1:amd64 (2:1.1.2-2) ... Setting up libxcb-sync1:amd64 (1.13-2~ubuntu18.04) ... Setting up libice-dev:amd64 (2:1.0.9-2) ... Setting up libxcomposite1:amd64 (1:0.4.4-2) ... Setting up libxpm4:amd64 (1:3.5.12-1) ... Setting up libxt6:amd64 (1:1.1.5-1) ... Setting up libxcb-shape0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxrender1:amd64 (1:0.9.10-1) ... Setting up libxcb1-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libavahi-client3:amd64 (0.7-3.1ubuntu1.2) ... Setting up libx11-dev:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libxft2:amd64 (2.3.2-1) ... Setting up libcups2:amd64 (2.2.7-1ubuntu2.7) ... Setting up libsm-dev:amd64 (2:1.2.2-1) ... Setting up libxdamage1:amd64 (1:1.1.4-3) ... Setting up libxext6:amd64 (2:1.3.3-1) ... Setting up libxfixes3:amd64 (1:5.0.3-1) ... Setting up libatspi2.0-0:amd64 (2.28.0-1) ... Setting up libxtst6:amd64 (2:1.2.3-1) ... Setting up libxmu6:amd64 (2:1.1.2-2) ... Setting up libxxf86dga1:amd64 (2:1.1.4-1) ... Setting up libatk-bridge2.0-0:amd64 (2.26.2-1) ... Setting up libxv1:amd64 (2:1.0.11-1) ... Setting up libxxf86vm1:amd64 (1:1.1.4-1) ... Setting up libxrandr2:amd64 (2:1.5.1-1) ... Setting up libglx-mesa0:amd64 (19.2.8-0ubuntu0~18.04.2) ... Setting up libxi6:amd64 (2:1.7.9-1) ... Setting up libxaw7:amd64 (2:1.0.13-1) ... Setting up libxinerama1:amd64 (2:1.1.3-1) ... Setting up libxt-dev:amd64 (1:1.1.5-1) ... Setting up at-spi2-core (2.28.0-1) ... Setting up libglx0:amd64 (1.0.0-2ubuntu2.3) ... Setting up libgl1:amd64 (1.0.0-2ubuntu2.3) ... Setting up x11-utils (7.7+3build1) ... Setting up libatk-wrapper-java (0.33.3-20ubuntu0.1) ... Setting up libatk-wrapper-java-jni:amd64 (0.33.3-20ubuntu0.1) ... Setting up openjdk-11-jre-headless:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jjs to provide /usr/bin/jjs (jjs) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jfr to provide /usr/bin/jfr (jfr) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode Setting up openjdk-11-jdk-headless:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jar to provide /usr/bin/jar (jar) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jarsigner to provide /usr/bin/jarsigner (jarsigner) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javac to provide /usr/bin/javac (javac) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javadoc to provide /usr/bin/javadoc (javadoc) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javap to provide /usr/bin/javap (javap) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jcmd to provide /usr/bin/jcmd (jcmd) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdb to provide /usr/bin/jdb (jdb) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdeprscan to provide /usr/bin/jdeprscan (jdeprscan) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdeps to provide /usr/bin/jdeps (jdeps) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jimage to provide /usr/bin/jimage (jimage) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jinfo to provide /usr/bin/jinfo (jinfo) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jlink to provide /usr/bin/jlink (jlink) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jmap to provide /usr/bin/jmap (jmap) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jmod to provide /usr/bin/jmod (jmod) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jps to provide /usr/bin/jps (jps) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jrunscript to provide /usr/bin/jrunscript (jrunscript) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jshell to provide /usr/bin/jshell (jshell) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstack to provide /usr/bin/jstack (jstack) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstat to provide /usr/bin/jstat (jstat) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstatd to provide /usr/bin/jstatd (jstatd) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmic to provide /usr/bin/rmic (rmic) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/serialver to provide /usr/bin/serialver (serialver) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jaotc to provide /usr/bin/jaotc (jaotc) in auto mode update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jhsdb to provide /usr/bin/jhsdb (jhsdb) in auto mode Setting up default-jre-headless (2:1.11-68ubuntu1~18.04.1) ... Setting up default-jdk-headless (2:1.11-68ubuntu1~18.04.1) ... Setting up openjdk-11-jre:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... Setting up ca-certificates-java (20180516ubuntu1~18.04.1) ... head: cannot open '/etc/ssl/certs/java/cacerts' for reading: No such file or directory Adding debian:Amazon_Root_CA_3.pem Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem Adding debian:DigiCert_Assured_ID_Root_G2.pem Adding debian:TÜRKTRUST_Elektronik_Sertifika_Hizmet_Sağlayıcısı_H5.pem Adding debian:CFCA_EV_ROOT.pem Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem Adding debian:Hongkong_Post_Root_CA_1.pem Adding debian:Amazon_Root_CA_2.pem Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem Adding debian:GDCA_TrustAUTH_R5_ROOT.pem Adding debian:USERTrust_RSA_Certification_Authority.pem Adding debian:COMODO_Certification_Authority.pem Adding debian:SecureSign_RootCA11.pem Adding debian:Izenpe.com.pem Adding debian:Network_Solutions_Certificate_Authority.pem Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem Adding debian:DigiCert_Assured_ID_Root_G3.pem Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem Adding debian:ISRG_Root_X1.pem Adding debian:Certinomis_-_Root_CA.pem Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem Adding debian:Entrust_Root_Certification_Authority_-_G2.pem Adding debian:SecureTrust_CA.pem Adding debian:GeoTrust_Primary_Certification_Authority_-_G3.pem Adding debian:AffirmTrust_Premium_ECC.pem Adding debian:ACCVRAIZ1.pem Adding debian:AffirmTrust_Commercial.pem Adding debian:QuoVadis_Root_CA_2.pem Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem Adding debian:CA_Disig_Root_R2.pem Adding debian:USERTrust_ECC_Certification_Authority.pem Adding debian:Microsec_e-Szigno_Root_CA_2009.pem Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem Adding debian:T-TeleSec_GlobalRoot_Class_3.pem Adding debian:SSL.com_Root_Certification_Authority_ECC.pem Adding debian:QuoVadis_Root_CA_3.pem Adding debian:QuoVadis_Root_CA_3_G3.pem Adding debian:TrustCor_RootCert_CA-1.pem Adding debian:OISTE_WISeKey_Global_Root_GA_CA.pem Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem Adding debian:EE_Certification_Centre_Root_CA.pem Adding debian:GeoTrust_Primary_Certification_Authority.pem Adding debian:Comodo_AAA_Services_root.pem Adding debian:GlobalSign_Root_CA.pem Adding debian:AffirmTrust_Premium.pem Adding debian:E-Tugra_Certification_Authority.pem Adding debian:DigiCert_Global_Root_CA.pem Adding debian:Certum_Trusted_Network_CA_2.pem Adding debian:Deutsche_Telekom_Root_CA_2.pem Adding debian:SwissSign_Silver_CA_-_G2.pem Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem Adding debian:Staat_der_Nederlanden_EV_Root_CA.pem Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem Adding debian:QuoVadis_Root_CA.pem Adding debian:GeoTrust_Universal_CA.pem Adding debian:Cybertrust_Global_Root.pem Adding debian:VeriSign_Universal_Root_Certification_Authority.pem Adding debian:Certum_Trusted_Network_CA.pem Adding debian:Certigna.pem Adding debian:Go_Daddy_Class_2_CA.pem Adding debian:Chambers_of_Commerce_Root_-_2008.pem Adding debian:Certplus_Class_2_Primary_CA.pem Adding debian:Visa_eCommerce_Root.pem Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem Adding debian:certSIGN_ROOT_CA.pem Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem Adding debian:Baltimore_CyberTrust_Root.pem Adding debian:COMODO_ECC_Certification_Authority.pem Adding debian:TrustCor_RootCert_CA-2.pem Adding debian:Certplus_Root_CA_G2.pem Adding debian:QuoVadis_Root_CA_2_G3.pem Adding debian:Security_Communication_Root_CA.pem Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem Adding debian:Entrust_Root_Certification_Authority.pem Adding debian:Global_Chambersign_Root_-_2008.pem Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem Adding debian:IdenTrust_Commercial_Root_CA_1.pem Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem Adding debian:COMODO_RSA_Certification_Authority.pem Adding debian:Actalis_Authentication_Root_CA.pem Adding debian:EC-ACC.pem Adding debian:LuxTrust_Global_Root_2.pem Adding debian:QuoVadis_Root_CA_1_G3.pem Adding debian:thawte_Primary_Root_CA.pem Adding debian:SwissSign_Gold_CA_-_G2.pem Adding debian:Secure_Global_CA.pem Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem Adding debian:TWCA_Global_Root_CA.pem Adding debian:Amazon_Root_CA_1.pem Adding debian:GlobalSign_Root_CA_-_R2.pem Adding debian:Sonera_Class_2_Root_CA.pem Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem Adding debian:Atos_TrustedRoot_2011.pem Adding debian:AC_RAIZ_FNMT-RCM.pem Adding debian:thawte_Primary_Root_CA_-_G2.pem Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem Adding debian:ePKI_Root_Certification_Authority.pem Adding debian:Staat_der_Nederlanden_Root_CA_-_G2.pem Adding debian:Staat_der_Nederlanden_Root_CA_-_G3.pem Adding debian:SSL.com_Root_Certification_Authority_RSA.pem Adding debian:AffirmTrust_Networking.pem Adding debian:OpenTrust_Root_CA_G1.pem Adding debian:TrustCor_ECA-1.pem Adding debian:DigiCert_Trusted_Root_G4.pem Adding debian:DST_Root_CA_X3.pem Adding debian:Amazon_Root_CA_4.pem Adding debian:thawte_Primary_Root_CA_-_G3.pem Adding debian:TWCA_Root_Certification_Authority.pem Adding debian:T-TeleSec_GlobalRoot_Class_2.pem Adding debian:Buypass_Class_3_Root_CA.pem Adding debian:Trustis_FPS_Root_CA.pem Adding debian:AddTrust_External_Root.pem Adding debian:Buypass_Class_2_Root_CA.pem Adding debian:DigiCert_Assured_ID_Root_CA.pem Adding debian:XRamp_Global_CA_Root.pem Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem Adding debian:DigiCert_Global_Root_G2.pem Adding debian:OpenTrust_Root_CA_G3.pem Adding debian:GeoTrust_Universal_CA_2.pem Adding debian:GlobalSign_Root_CA_-_R3.pem Adding debian:Taiwan_GRCA.pem Adding debian:Certplus_Root_CA_G1.pem Adding debian:DigiCert_Global_Root_G3.pem Adding debian:GeoTrust_Primary_Certification_Authority_-_G2.pem Adding debian:Security_Communication_RootCA2.pem Adding debian:Starfield_Class_2_CA.pem Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem Adding debian:TeliaSonera_Root_CA_v1.pem Adding debian:GeoTrust_Global_CA.pem Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem Adding debian:SZAFIR_ROOT_CA2.pem Adding debian:OpenTrust_Root_CA_G2.pem Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem done. Setting up default-jre (2:1.11-68ubuntu1~18.04.1) ... Setting up openjdk-11-jdk:amd64 (11.0.6+10-1ubuntu1~18.04.1) ... update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jconsole to provide /usr/bin/jconsole (jconsole) in auto mode Setting up default-jdk (2:1.11-68ubuntu1~18.04.1) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for ca-certificates (20180409) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. done. Invoking 'apt-get clean' Removing intermediate container 41e73a405c57 ---> 5d843045e891 Step 29/33 : RUN echo "ros-melodic-catkin: 0.7.20-1bionic.20191210.204717" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ---> Running in 65643de90a3d ros-melodic-catkin: 0.7.20-1bionic.20191210.204717 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Ign:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:9 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock googletest libarchive13 libgtest-dev libjbig0 libjsoncpp1 liblzo2-2 libpaper-utils libpaper1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib librhash0 libtiff5 libuv1 libwebp6 libwebpdemux2 libwebpmux3 python python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-minimal python-nose python-olefile python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six python2.7 python2.7-minimal sgml-base tzdata xml-core Suggested packages: cmake-doc ninja-build lrzip python-doc python-tk fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french texlive-latex-base texlive-latex-recommended python-coverage python-nose-doc python-pil-doc python-pil-dbg python-setuptools ttf-bitstream-vera python-pyparsing-doc python2.7-doc binfmt-support sgml-base-doc The following NEW packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock googletest libarchive13 libgtest-dev libjbig0 libjsoncpp1 liblzo2-2 libpaper-utils libpaper1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib librhash0 libtiff5 libuv1 libwebp6 libwebpdemux2 libwebpmux3 python python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-minimal python-nose python-olefile python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six python2.7 python2.7-minimal ros-melodic-catkin sgml-base tzdata xml-core 0 upgraded, 44 newly installed, 0 to remove and 18 not upgraded. Need to get 13.4 MB of archives. After this operation, 69.9 MB of additional disk space will be used. Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg-modules all 0.4.16-1 [41.7 kB] Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg all 0.4.16-100 [3,512 B] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04 [335 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04 [1,294 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04 [1,915 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04 [248 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2019c-0ubuntu0.18.04 [190 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake-data all 3.10.2-1ubuntu2.18.04.1 [1,332 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive13 amd64 3.2.2-3.1ubuntu0.5 [288 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 librhash0 amd64 1.3.6-2 [78.1 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libuv1 amd64 1.18.0-3 [64.4 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake amd64 3.10.2-1ubuntu2.18.04.1 [3,152 kB] Get:19 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-catkin amd64 0.7.20-1bionic.20191210.204717 [125 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/universe amd64 googletest amd64 1.8.0-6 [652 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/universe amd64 google-mock amd64 1.8.0-6 [2,972 B] Get:25 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgtest-dev amd64 1.8.0-6 [2,718 B] Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dateutil all 2.6.1-1 [60.6 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyparsing all 2.2.0+dfsg1-2 [52.1 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-nose all 1.3.7-3 [116 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-pil amd64 5.1.0-1ubuntu0.2 [329 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 13.4 MB in 1s (18.2 MB/s) Selecting previously unselected package liblzo2-2:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 20034 files and directories currently installed.) Preparing to unpack .../0-liblzo2-2_2.08-1.2_amd64.deb ... Unpacking liblzo2-2:amd64 (2.08-1.2) ... Selecting previously unselected package libpython2.7-minimal:amd64. Preparing to unpack .../1-libpython2.7-minimal_2.7.17-1~18.04_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../2-python2.7-minimal_2.7.17-1~18.04_amd64.deb ... Unpacking python2.7-minimal (2.7.17-1~18.04) ... Selecting previously unselected package python-minimal. Preparing to unpack .../3-python-minimal_2.7.15~rc1-1_amd64.deb ... Unpacking python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package libpython2.7-stdlib:amd64. Preparing to unpack .../4-libpython2.7-stdlib_2.7.17-1~18.04_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04) ... Selecting previously unselected package python2.7. Preparing to unpack .../5-python2.7_2.7.17-1~18.04_amd64.deb ... Unpacking python2.7 (2.7.17-1~18.04) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../6-libpython-stdlib_2.7.15~rc1-1_amd64.deb ... Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04) ... Setting up python2.7-minimal (2.7.17-1~18.04) ... Setting up python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package python. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 20793 files and directories currently installed.) Preparing to unpack .../00-python_2.7.15~rc1-1_amd64.deb ... Unpacking python (2.7.15~rc1-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../01-sgml-base_1.29_all.deb ... Unpacking sgml-base (1.29) ... Selecting previously unselected package tzdata. Preparing to unpack .../02-tzdata_2019c-0ubuntu0.18.04_all.deb ... Unpacking tzdata (2019c-0ubuntu0.18.04) ... Selecting previously unselected package cmake-data. Preparing to unpack .../03-cmake-data_3.10.2-1ubuntu2.18.04.1_all.deb ... Unpacking cmake-data (3.10.2-1ubuntu2.18.04.1) ... Selecting previously unselected package libarchive13:amd64. Preparing to unpack .../04-libarchive13_3.2.2-3.1ubuntu0.5_amd64.deb ... Unpacking libarchive13:amd64 (3.2.2-3.1ubuntu0.5) ... Selecting previously unselected package libjsoncpp1:amd64. Preparing to unpack .../05-libjsoncpp1_1.7.4-3_amd64.deb ... Unpacking libjsoncpp1:amd64 (1.7.4-3) ... Selecting previously unselected package librhash0:amd64. Preparing to unpack .../06-librhash0_1.3.6-2_amd64.deb ... Unpacking librhash0:amd64 (1.3.6-2) ... Selecting previously unselected package libuv1:amd64. Preparing to unpack .../07-libuv1_1.18.0-3_amd64.deb ... Unpacking libuv1:amd64 (1.18.0-3) ... Selecting previously unselected package cmake. Preparing to unpack .../08-cmake_3.10.2-1ubuntu2.18.04.1_amd64.deb ... Unpacking cmake (3.10.2-1ubuntu2.18.04.1) ... Selecting previously unselected package xml-core. Preparing to unpack .../09-xml-core_0.18_all.deb ... Unpacking xml-core (0.18) ... Selecting previously unselected package docutils-common. Preparing to unpack .../10-docutils-common_0.14+dfsg-3_all.deb ... Unpacking docutils-common (0.14+dfsg-3) ... Selecting previously unselected package docutils-doc. Preparing to unpack .../11-docutils-doc_0.14+dfsg-3_all.deb ... Unpacking docutils-doc (0.14+dfsg-3) ... Selecting previously unselected package googletest:amd64. Preparing to unpack .../12-googletest_1.8.0-6_amd64.deb ... Unpacking googletest:amd64 (1.8.0-6) ... Selecting previously unselected package google-mock:amd64. Preparing to unpack .../13-google-mock_1.8.0-6_amd64.deb ... Unpacking google-mock:amd64 (1.8.0-6) ... Selecting previously unselected package libgtest-dev:amd64. Preparing to unpack .../14-libgtest-dev_1.8.0-6_amd64.deb ... Unpacking libgtest-dev:amd64 (1.8.0-6) ... Selecting previously unselected package libpaper1:amd64. Preparing to unpack .../15-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libpaper-utils. Preparing to unpack .../16-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../17-libjbig0_2.1-3.1build1_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1build1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../18-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Selecting previously unselected package libwebp6:amd64. Preparing to unpack .../19-libwebp6_0.6.1-2_amd64.deb ... Unpacking libwebp6:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpdemux2:amd64. Preparing to unpack .../20-libwebpdemux2_0.6.1-2_amd64.deb ... Unpacking libwebpdemux2:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpmux3:amd64. Preparing to unpack .../21-libwebpmux3_0.6.1-2_amd64.deb ... Unpacking libwebpmux3:amd64 (0.6.1-2) ... Selecting previously unselected package python-six. Preparing to unpack .../22-python-six_1.11.0-2_all.deb ... Unpacking python-six (1.11.0-2) ... Selecting previously unselected package python-dateutil. Preparing to unpack .../23-python-dateutil_2.6.1-1_all.deb ... Unpacking python-dateutil (2.6.1-1) ... Selecting previously unselected package python-roman. Preparing to unpack .../24-python-roman_2.0.0-3_all.deb ... Unpacking python-roman (2.0.0-3) ... Selecting previously unselected package python-docutils. Preparing to unpack .../25-python-docutils_0.14+dfsg-3_all.deb ... Unpacking python-docutils (0.14+dfsg-3) ... Selecting previously unselected package python-pyparsing. Preparing to unpack .../26-python-pyparsing_2.2.0+dfsg1-2_all.deb ... Unpacking python-pyparsing (2.2.0+dfsg1-2) ... Selecting previously unselected package python-catkin-pkg-modules. Preparing to unpack .../27-python-catkin-pkg-modules_0.4.16-1_all.deb ... Unpacking python-catkin-pkg-modules (0.4.16-1) ... Selecting previously unselected package python-catkin-pkg. Preparing to unpack .../28-python-catkin-pkg_0.4.16-100_all.deb ... Unpacking python-catkin-pkg (0.4.16-100) ... Selecting previously unselected package python-pkg-resources. Preparing to unpack .../29-python-pkg-resources_39.0.1-2_all.deb ... Unpacking python-pkg-resources (39.0.1-2) ... Selecting previously unselected package python-chardet. Preparing to unpack .../30-python-chardet_3.0.4-1_all.deb ... Unpacking python-chardet (3.0.4-1) ... Selecting previously unselected package python-empy. Preparing to unpack .../31-python-empy_3.3.2-1build1_all.deb ... Unpacking python-empy (3.3.2-1build1) ... Selecting previously unselected package python-nose. Preparing to unpack .../32-python-nose_1.3.7-3_all.deb ... Unpacking python-nose (1.3.7-3) ... Selecting previously unselected package python-olefile. Preparing to unpack .../33-python-olefile_0.45.1-1_all.deb ... Unpacking python-olefile (0.45.1-1) ... Selecting previously unselected package python-pil:amd64. Preparing to unpack .../34-python-pil_5.1.0-1ubuntu0.2_amd64.deb ... Unpacking python-pil:amd64 (5.1.0-1ubuntu0.2) ... Selecting previously unselected package python-pygments. Preparing to unpack .../35-python-pygments_2.2.0+dfsg-1_all.deb ... Unpacking python-pygments (2.2.0+dfsg-1) ... Selecting previously unselected package ros-melodic-catkin. Preparing to unpack .../36-ros-melodic-catkin_0.7.20-1bionic.20191210.204717_amd64.deb ... Unpacking ros-melodic-catkin (0.7.20-1bionic.20191210.204717) ... Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Creating config file /etc/papersize with new version Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... Setting up libjbig0:amd64 (2.1-3.1build1) ... Setting up libuv1:amd64 (1.18.0-3) ... Setting up tzdata (2019c-0ubuntu0.18.04) ... Current default time zone: 'Etc/UTC' Local time is now: Thu Feb 13 14:12:41 UTC 2020. Universal Time is now: Thu Feb 13 14:12:41 UTC 2020. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Setting up cmake-data (3.10.2-1ubuntu2.18.04.1) ... Setting up sgml-base (1.29) ... Setting up librhash0:amd64 (1.3.6-2) ... Setting up docutils-doc (0.14+dfsg-3) ... Setting up xml-core (0.18) ... Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04) ... Setting up liblzo2-2:amd64 (2.08-1.2) ... Setting up libwebp6:amd64 (0.6.1-2) ... Setting up libjsoncpp1:amd64 (1.7.4-3) ... Setting up libarchive13:amd64 (3.2.2-3.1ubuntu0.5) ... Setting up python2.7 (2.7.17-1~18.04) ... Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libwebpmux3:amd64 (0.6.1-2) ... Setting up libwebpdemux2:amd64 (0.6.1-2) ... Setting up cmake (3.10.2-1ubuntu2.18.04.1) ... Setting up python (2.7.15~rc1-1) ... Setting up python-pyparsing (2.2.0+dfsg1-2) ... Setting up python-pkg-resources (39.0.1-2) ... Setting up python-roman (2.0.0-3) ... Setting up python-six (1.11.0-2) ... Setting up googletest:amd64 (1.8.0-6) ... Setting up python-pygments (2.2.0+dfsg-1) ... Setting up python-empy (3.3.2-1build1) ... Setting up libgtest-dev:amd64 (1.8.0-6) ... Setting up python-olefile (0.45.1-1) ... Setting up python-nose (1.3.7-3) ... Setting up python-pil:amd64 (5.1.0-1ubuntu0.2) ... Setting up google-mock:amd64 (1.8.0-6) ... Setting up python-chardet (3.0.4-1) ... Setting up python-dateutil (2.6.1-1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for shared-mime-info (1.9-2) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for sgml-base (1.29) ... Setting up docutils-common (0.14+dfsg-3) ... Processing triggers for sgml-base (1.29) ... Setting up python-docutils (0.14+dfsg-3) ... update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode Setting up python-catkin-pkg-modules (0.4.16-1) ... Setting up python-catkin-pkg (0.4.16-100) ... Setting up ros-melodic-catkin (0.7.20-1bionic.20191210.204717) ... Invoking 'apt-get clean' Removing intermediate container 65643de90a3d ---> 6491bdd713c5 Step 30/33 : RUN echo "ros-melodic-roscpp: 1.14.3-0bionic.20191210.230336" && echo "rsync: 3.1.2-2.1ubuntu1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-roscpp rsync ---> Running in 161a8ce9b948 ros-melodic-roscpp: 1.14.3-0bionic.20191210.230336 rsync: 3.1.2-2.1ubuntu1 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 Release Hit:9 http://security.ubuntu.com/ubuntu bionic-security InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-roscpp rsync' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 ibverbs-providers icu-devtools libapr1 libapr1-dev libaprutil1 libaprutil1-dev libboost-all-dev libboost-atomic-dev libboost-atomic1.65-dev libboost-atomic1.65.1 libboost-chrono-dev libboost-chrono1.65-dev libboost-chrono1.65.1 libboost-container-dev libboost-container1.65-dev libboost-container1.65.1 libboost-context-dev libboost-context1.65-dev libboost-context1.65.1 libboost-coroutine-dev libboost-coroutine1.65-dev libboost-coroutine1.65.1 libboost-date-time-dev libboost-date-time1.65-dev libboost-date-time1.65.1 libboost-dev libboost-exception-dev libboost-exception1.65-dev libboost-fiber-dev libboost-fiber1.65-dev libboost-fiber1.65.1 libboost-filesystem-dev libboost-filesystem1.65-dev libboost-filesystem1.65.1 libboost-graph-dev libboost-graph-parallel-dev libboost-graph-parallel1.65-dev libboost-graph-parallel1.65.1 libboost-graph1.65-dev libboost-graph1.65.1 libboost-iostreams-dev libboost-iostreams1.65-dev libboost-iostreams1.65.1 libboost-locale-dev libboost-locale1.65-dev libboost-locale1.65.1 libboost-log-dev libboost-log1.65-dev libboost-log1.65.1 libboost-math-dev libboost-math1.65-dev libboost-math1.65.1 libboost-mpi-dev libboost-mpi-python-dev libboost-mpi-python1.65-dev libboost-mpi-python1.65.1 libboost-mpi1.65-dev libboost-mpi1.65.1 libboost-numpy-dev libboost-numpy1.65-dev libboost-numpy1.65.1 libboost-program-options-dev libboost-program-options1.65-dev libboost-program-options1.65.1 libboost-python-dev libboost-python1.65-dev libboost-python1.65.1 libboost-random-dev libboost-random1.65-dev libboost-random1.65.1 libboost-regex-dev libboost-regex1.65-dev libboost-regex1.65.1 libboost-serialization-dev libboost-serialization1.65-dev libboost-serialization1.65.1 libboost-signals-dev libboost-signals1.65-dev libboost-signals1.65.1 libboost-stacktrace-dev libboost-stacktrace1.65-dev libboost-stacktrace1.65.1 libboost-system-dev libboost-system1.65-dev libboost-system1.65.1 libboost-test-dev libboost-test1.65-dev libboost-test1.65.1 libboost-thread-dev libboost-thread1.65-dev libboost-thread1.65.1 libboost-timer-dev libboost-timer1.65-dev libboost-timer1.65.1 libboost-tools-dev libboost-type-erasure-dev libboost-type-erasure1.65-dev libboost-type-erasure1.65.1 libboost-wave-dev libboost-wave1.65-dev libboost-wave1.65.1 libboost1.65-dev libboost1.65-tools-dev libconsole-bridge-dev libconsole-bridge0.4 libexpat1-dev libfabric1 libgirepository-1.0-1 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libgraphite2-3 libgraphite2-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libhwloc-dev libhwloc-plugins libhwloc5 libibverbs-dev libibverbs1 libicu-dev libicu-le-hb-dev libicu-le-hb0 libiculx60 libldap2-dev liblog4cxx-dev liblog4cxx10v5 libnl-3-200 libnl-route-3-200 libnuma-dev libnuma1 libopenmpi-dev libopenmpi2 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpopt0 libpsm-infinipath1 libpython-dev libpython2.7 libpython2.7-dev libpython3-dev libpython3.6 libpython3.6-dev librdmacm1 libsctp-dev libsctp1 libuuid1 libyaml-0-2 mpi-default-bin mpi-default-dev ocl-icd-libopencl1 openmpi-bin openmpi-common pkg-config python-dev python-yaml python2.7-dev python3-dev python3.6-dev ros-melodic-cpp-common ros-melodic-gencpp ros-melodic-geneus ros-melodic-genlisp ros-melodic-genmsg ros-melodic-gennodejs ros-melodic-genpy ros-melodic-message-generation ros-melodic-message-runtime ros-melodic-rosbuild ros-melodic-rosconsole ros-melodic-roscpp-serialization ros-melodic-roscpp-traits ros-melodic-rosgraph-msgs ros-melodic-rostime ros-melodic-std-msgs ros-melodic-xmlrpcpp uuid-dev zlib1g-dev Suggested packages: libboost-doc graphviz libboost1.65-doc gccxml libmpfrc++-dev libntl-dev xsltproc doxygen docbook-xml docbook-xsl fop libglib2.0-doc libgraphite2-utils libhwloc-contrib-plugins icu-doc liblog4cxx-doc zip openmpi-doc lksctp-tools opencl-icd gfortran openssh-client openssh-server Recommended packages: uuid-runtime The following NEW packages will be installed: gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 ibverbs-providers icu-devtools libapr1 libapr1-dev libaprutil1 libaprutil1-dev libboost-all-dev libboost-atomic-dev libboost-atomic1.65-dev libboost-atomic1.65.1 libboost-chrono-dev libboost-chrono1.65-dev libboost-chrono1.65.1 libboost-container-dev libboost-container1.65-dev libboost-container1.65.1 libboost-context-dev libboost-context1.65-dev libboost-context1.65.1 libboost-coroutine-dev libboost-coroutine1.65-dev libboost-coroutine1.65.1 libboost-date-time-dev libboost-date-time1.65-dev libboost-date-time1.65.1 libboost-dev libboost-exception-dev libboost-exception1.65-dev libboost-fiber-dev libboost-fiber1.65-dev libboost-fiber1.65.1 libboost-filesystem-dev libboost-filesystem1.65-dev libboost-filesystem1.65.1 libboost-graph-dev libboost-graph-parallel-dev libboost-graph-parallel1.65-dev libboost-graph-parallel1.65.1 libboost-graph1.65-dev libboost-graph1.65.1 libboost-iostreams-dev libboost-iostreams1.65-dev libboost-iostreams1.65.1 libboost-locale-dev libboost-locale1.65-dev libboost-locale1.65.1 libboost-log-dev libboost-log1.65-dev libboost-log1.65.1 libboost-math-dev libboost-math1.65-dev libboost-math1.65.1 libboost-mpi-dev libboost-mpi-python-dev libboost-mpi-python1.65-dev libboost-mpi-python1.65.1 libboost-mpi1.65-dev libboost-mpi1.65.1 libboost-numpy-dev libboost-numpy1.65-dev libboost-numpy1.65.1 libboost-program-options-dev libboost-program-options1.65-dev libboost-program-options1.65.1 libboost-python-dev libboost-python1.65-dev libboost-python1.65.1 libboost-random-dev libboost-random1.65-dev libboost-random1.65.1 libboost-regex-dev libboost-regex1.65-dev libboost-regex1.65.1 libboost-serialization-dev libboost-serialization1.65-dev libboost-serialization1.65.1 libboost-signals-dev libboost-signals1.65-dev libboost-signals1.65.1 libboost-stacktrace-dev libboost-stacktrace1.65-dev libboost-stacktrace1.65.1 libboost-system-dev libboost-system1.65-dev libboost-system1.65.1 libboost-test-dev libboost-test1.65-dev libboost-test1.65.1 libboost-thread-dev libboost-thread1.65-dev libboost-thread1.65.1 libboost-timer-dev libboost-timer1.65-dev libboost-timer1.65.1 libboost-tools-dev libboost-type-erasure-dev libboost-type-erasure1.65-dev libboost-type-erasure1.65.1 libboost-wave-dev libboost-wave1.65-dev libboost-wave1.65.1 libboost1.65-dev libboost1.65-tools-dev libconsole-bridge-dev libconsole-bridge0.4 libexpat1-dev libfabric1 libgirepository-1.0-1 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libgraphite2-3 libgraphite2-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libhwloc-dev libhwloc-plugins libhwloc5 libibverbs-dev libibverbs1 libicu-dev libicu-le-hb-dev libicu-le-hb0 libiculx60 libldap2-dev liblog4cxx-dev liblog4cxx10v5 libnl-3-200 libnl-route-3-200 libnuma-dev libnuma1 libopenmpi-dev libopenmpi2 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpopt0 libpsm-infinipath1 libpython-dev libpython2.7 libpython2.7-dev libpython3-dev libpython3.6 libpython3.6-dev librdmacm1 libsctp-dev libsctp1 libyaml-0-2 mpi-default-bin mpi-default-dev ocl-icd-libopencl1 openmpi-bin openmpi-common pkg-config python-dev python-yaml python2.7-dev python3-dev python3.6-dev ros-melodic-cpp-common ros-melodic-gencpp ros-melodic-geneus ros-melodic-genlisp ros-melodic-genmsg ros-melodic-gennodejs ros-melodic-genpy ros-melodic-message-generation ros-melodic-message-runtime ros-melodic-rosbuild ros-melodic-rosconsole ros-melodic-roscpp ros-melodic-roscpp-serialization ros-melodic-roscpp-traits ros-melodic-rosgraph-msgs ros-melodic-rostime ros-melodic-std-msgs ros-melodic-xmlrpcpp rsync uuid-dev zlib1g-dev The following packages will be upgraded: libuuid1 1 upgraded, 185 newly installed, 0 to remove and 17 not upgraded. Need to get 113 MB of archives. After this operation, 423 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libuuid1 amd64 2.31.1-0.4ubuntu3.5 [20.1 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgirepository-1.0-1 amd64 1.56.1-1 [82.0 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-glib-2.0 amd64 1.56.1-1 [131 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpopt0 amd64 1.16-11 [26.2 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-0-2 amd64 0.1.7-2ubuntu3 [47.2 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnuma1 amd64 2.0.11-2.1ubuntu0.1 [22.0 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 rsync amd64 3.1.2-2.1ubuntu1 [334 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-3 amd64 1.3.11-2 [78.7 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz0b amd64 1.7.2-1ubuntu1 [232 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-harfbuzz-0.0 amd64 1.7.2-1ubuntu1 [18.6 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnl-3-200 amd64 3.2.29-0ubuntu3 [52.8 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnl-route-3-200 amd64 3.2.29-0ubuntu3 [146 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libibverbs1 amd64 17.1-1ubuntu0.2 [44.4 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ibverbs-providers amd64 17.1-1ubuntu0.2 [160 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 icu-devtools amd64 60.2-3ubuntu3 [179 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapr1 amd64 1.6.3-2 [90.9 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 uuid-dev amd64 2.31.1-0.4ubuntu3.5 [33.2 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsctp1 amd64 1.0.17+dfsg-2 [8,008 B] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsctp-dev amd64 1.0.17+dfsg-2 [61.9 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapr1-dev amd64 1.6.3-2 [690 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libaprutil1 amd64 1.6.1-2 [84.4 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap2-dev amd64 2.4.45+dfsg-1ubuntu1.4 [262 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.2 [122 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 libaprutil1-dev amd64 1.6.1-2 [391 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [7,218 kB] Get:26 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-cpp-common amd64 0.6.13-1bionic.20191210.220749 [21.9 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-dev amd64 1.65.1.0ubuntu1 [3,128 B] Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost1.65-tools-dev amd64 1.65.1+dfsg-0ubuntu5 [1,222 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-tools-dev amd64 1.65.1.0ubuntu1 [3,096 B] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-atomic1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [7,268 B] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-atomic1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [5,160 B] Get:32 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-atomic-dev amd64 1.65.1.0ubuntu1 [3,224 B] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [10.5 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-chrono1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [10.2 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-chrono1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [9,804 B] Get:36 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-chrono-dev amd64 1.65.1.0ubuntu1 [3,544 B] Get:37 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [43.4 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [41.7 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container-dev amd64 1.65.1.0ubuntu1 [3,400 B] Get:40 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [8,336 B] Get:41 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [6,364 B] Get:42 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context-dev amd64 1.65.1.0ubuntu1 [3,120 B] Get:43 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genmsg amd64 0.5.12-0bionic.20191210.213309 [35.1 kB] Get:44 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-gencpp amd64 0.6.2-0bionic.20191210.213617 [14.6 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [43.2 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [22.6 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [24.2 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine-dev amd64 1.65.1.0ubuntu1 [3,196 B] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-date-time1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [20.5 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-serialization1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [99.3 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-serialization1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [137 kB] Get:52 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-date-time1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [26.7 kB] Get:53 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-date-time-dev amd64 1.65.1.0ubuntu1 [2,924 B] Get:54 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-exception1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [4,580 B] Get:55 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-exception-dev amd64 1.65.1.0ubuntu1 [2,916 B] Get:56 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [40.3 kB] Get:57 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [108 kB] Get:58 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [121 kB] Get:59 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber-dev amd64 1.65.1.0ubuntu1 [3,348 B] Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [11.8 kB] Get:61 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [52.1 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem-dev amd64 1.65.1.0ubuntu1 [2,960 B] Get:63 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [259 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [93.4 kB] Get:65 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [240 kB] Get:66 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [289 kB] Get:67 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-geneus amd64 2.2.6-0bionic.20191210.213628 [25.1 kB] Get:68 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [102 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-dev amd64 1.65.1.0ubuntu1 [3,024 B] Get:70 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpsm-infinipath1 amd64 3.3+20.604758e7-5 [174 kB] Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 librdmacm1 amd64 17.1-1ubuntu0.2 [56.1 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libfabric1 amd64 1.5.3-1 [302 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc5 amd64 1.11.9-1 [105 kB] Get:74 http://archive.ubuntu.com/ubuntu bionic/main amd64 ocl-icd-libopencl1 amd64 2.2.11-1ubuntu1 [30.3 kB] Get:75 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc-plugins amd64 1.11.9-1 [12.5 kB] Get:76 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpi2 amd64 2.1.1-8 [2,056 kB] Get:77 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genlisp amd64 0.4.16-0bionic.20191210.213632 [21.8 kB] Get:78 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-gennodejs amd64 2.0.1-0bionic.20191210.213642 [21.8 kB] Get:79 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genpy amd64 0.6.9-1bionic.20191210.213746 [50.1 kB] Get:80 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [47.0 kB] Get:81 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [62.3 kB] Get:82 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [64.5 kB] Get:83 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel-dev amd64 1.65.1.0ubuntu1 [3,056 B] Get:84 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-4 [14.3 kB] Get:85 http://archive.ubuntu.com/ubuntu bionic/main amd64 libiculx60 amd64 60.2-3ubuntu3 [18.9 kB] Get:86 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-icu0 amd64 1.7.2-1ubuntu1 [5,604 B] Get:87 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-gobject0 amd64 1.7.2-1ubuntu1 [13.4 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-bin amd64 2.56.4-0ubuntu0.18.04.4 [68.7 kB] Get:89 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev-bin amd64 2.56.4-0ubuntu0.18.04.4 [102 kB] Get:90 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-message-generation amd64 0.4.0-0bionic.20191210.214126 [4,768 B] Get:91 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rostime amd64 0.6.13-1bionic.20191210.221315 [38.8 kB] Get:92 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp-traits amd64 0.6.13-1bionic.20191210.221749 [10.3 kB] Get:93 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp-serialization amd64 0.6.13-1bionic.20191210.222426 [13.0 kB] Get:94 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre16-3 amd64 2:8.39-9 [147 kB] Get:95 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre32-3 amd64 2:8.39-9 [138 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcrecpp0v5 amd64 2:8.39-9 [15.3 kB] Get:97 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre3-dev amd64 2:8.39-9 [537 kB] Get:98 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-message-runtime amd64 0.4.12-0bionic.20191210.222922 [4,792 B] Get:99 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosbuild amd64 1.14.7-1bionic.20191210.223542 [27.9 kB] Get:100 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosconsole amd64 1.13.11-1bionic.20191210.224323 [86.7 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic/main amd64 pkg-config amd64 0.29.1-0ubuntu2 [45.0 kB] Get:102 http://archive.ubuntu.com/ubuntu bionic/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-0ubuntu2 [176 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev amd64 2.56.4-0ubuntu0.18.04.4 [1,385 kB] Get:104 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-std-msgs amd64 0.5.12-0bionic.20191210.223600 [55.9 kB] Get:105 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosgraph-msgs amd64 1.11.2-0bionic.20191210.224335 [25.1 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-dev amd64 1.3.11-2 [14.5 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-dev amd64 1.7.2-1ubuntu1 [302 kB] Get:108 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-4 [29.5 kB] Get:109 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-dev amd64 60.2-3ubuntu3 [8,893 kB] Get:110 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-xmlrpcpp amd64 1.14.3-0bionic.20191210.221748 [57.3 kB] Get:111 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp amd64 1.14.3-0bionic.20191210.230336 [500 kB] Get:112 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [312 kB] Get:113 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-iostreams1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [29.2 kB] Get:114 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-iostreams1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [37.0 kB] Get:115 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-iostreams-dev amd64 1.65.1.0ubuntu1 [2,916 B] Get:116 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-locale1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [241 kB] Get:117 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-locale1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [329 kB] Get:118 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-locale-dev amd64 1.65.1.0ubuntu1 [3,248 B] Get:119 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [384 kB] Get:120 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [49.0 kB] Get:121 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [553 kB] Get:122 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log-dev amd64 1.65.1.0ubuntu1 [3,124 B] Get:123 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [311 kB] Get:124 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [560 kB] Get:125 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math-dev amd64 1.65.1.0ubuntu1 [3,112 B] Get:126 http://archive.ubuntu.com/ubuntu bionic/universe amd64 openmpi-common all 2.1.1-8 [140 kB] Get:127 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libibverbs-dev amd64 17.1-1ubuntu0.2 [103 kB] Get:128 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnuma-dev amd64 2.0.11-2.1ubuntu0.1 [32.3 kB] Get:129 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc-dev amd64 1.11.9-1 [167 kB] Get:130 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpi-dev amd64 2.1.1-8 [925 kB] Get:131 http://archive.ubuntu.com/ubuntu bionic/universe amd64 mpi-default-dev amd64 1.10 [3,888 B] Get:132 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [137 kB] Get:133 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-dev amd64 1.65.1.0ubuntu1 [3,004 B] Get:134 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [101 kB] Get:135 http://archive.ubuntu.com/ubuntu bionic/universe amd64 openmpi-bin amd64 2.1.1-8 [88.2 kB] Get:136 http://archive.ubuntu.com/ubuntu bionic/universe amd64 mpi-default-bin amd64 1.10 [3,108 B] Get:137 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [214 kB] Get:138 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [24.7 kB] Get:139 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python-dev amd64 1.65.1.0ubuntu1 [3,040 B] Get:140 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [17.4 kB] Get:141 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [17.4 kB] Get:142 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy-dev amd64 1.65.1.0ubuntu1 [2,960 B] Get:143 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [137 kB] Get:144 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [163 kB] Get:145 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options-dev amd64 1.65.1.0ubuntu1 [2,940 B] Get:146 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7 amd64 2.7.17-1~18.04 [1,053 kB] Get:147 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-dev amd64 2.7.17-1~18.04 [28.3 MB] Get:148 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-dev amd64 2.7.15~rc1-1 [7,684 B] Get:149 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-dev amd64 2.7.17-1~18.04 [277 kB] Get:150 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dev amd64 2.7.15~rc1-1 [1,256 B] Get:151 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6 amd64 3.6.9-1~18.04 [1,414 kB] Get:152 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-dev amd64 3.6.9-1~18.04 [44.8 MB] Get:153 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-dev amd64 3.6.7-1~18.04 [7,328 B] Get:154 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-dev amd64 3.6.9-1~18.04 [508 kB] Get:155 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-dev amd64 3.6.7-1~18.04 [1,288 B] Get:156 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [103 kB] Get:157 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python-dev amd64 1.65.1.0ubuntu1 [3,216 B] Get:158 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [12.8 kB] Get:159 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [12.4 kB] Get:160 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random-dev amd64 1.65.1.0ubuntu1 [2,924 B] Get:161 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex-dev amd64 1.65.1.0ubuntu1 [3,184 B] Get:162 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-serialization-dev amd64 1.65.1.0ubuntu1 [3,144 B] Get:163 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [30.6 kB] Get:164 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [33.1 kB] Get:165 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals-dev amd64 1.65.1.0ubuntu1 [2,996 B] Get:166 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [49.1 kB] Get:167 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [25.9 kB] Get:168 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace-dev amd64 1.65.1.0ubuntu1 [2,924 B] Get:169 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system-dev amd64 1.65.1.0ubuntu1 [3,060 B] Get:170 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test-dev amd64 1.65.1.0ubuntu1 [2,960 B] Get:171 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread-dev amd64 1.65.1.0ubuntu1 [2,948 B] Get:172 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [11.9 kB] Get:173 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [11.8 kB] Get:174 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer-dev amd64 1.65.1.0ubuntu1 [3,044 B] Get:175 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [20.7 kB] Get:176 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [20.1 kB] Get:177 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure-dev amd64 1.65.1.0ubuntu1 [3,024 B] Get:178 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [178 kB] Get:179 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [234 kB] Get:180 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave-dev amd64 1.65.1.0ubuntu1 [2,952 B] Get:181 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-all-dev amd64 1.65.1.0ubuntu1 [2,340 B] Get:182 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libconsole-bridge0.4 amd64 0.4.0+dfsg-2 [8,168 B] Get:183 http://archive.ubuntu.com/ubuntu bionic/universe amd64 liblog4cxx10v5 amd64 0.10.0-13ubuntu2 [400 kB] Get:184 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-yaml amd64 3.12-1build2 [115 kB] Get:185 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libconsole-bridge-dev amd64 0.4.0+dfsg-2 [6,596 B] Get:186 http://archive.ubuntu.com/ubuntu bionic/universe amd64 liblog4cxx-dev amd64 0.10.0-13ubuntu2 [857 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 113 MB in 5s (24.0 MB/s) (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 ... 26889 files and directories currently installed.) Preparing to unpack .../libuuid1_2.31.1-0.4ubuntu3.5_amd64.deb ... Unpacking libuuid1:amd64 (2.31.1-0.4ubuntu3.5) over (2.31.1-0.4ubuntu3.4) ... Setting up libuuid1:amd64 (2.31.1-0.4ubuntu3.5) ... Selecting previously unselected package libgirepository-1.0-1:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26889 files and directories currently installed.) Preparing to unpack .../000-libgirepository-1.0-1_1.56.1-1_amd64.deb ... Unpacking libgirepository-1.0-1:amd64 (1.56.1-1) ... Selecting previously unselected package gir1.2-glib-2.0:amd64. Preparing to unpack .../001-gir1.2-glib-2.0_1.56.1-1_amd64.deb ... Unpacking gir1.2-glib-2.0:amd64 (1.56.1-1) ... Selecting previously unselected package libpopt0:amd64. Preparing to unpack .../002-libpopt0_1.16-11_amd64.deb ... Unpacking libpopt0:amd64 (1.16-11) ... Selecting previously unselected package libyaml-0-2:amd64. Preparing to unpack .../003-libyaml-0-2_0.1.7-2ubuntu3_amd64.deb ... Unpacking libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Selecting previously unselected package libnuma1:amd64. Preparing to unpack .../004-libnuma1_2.0.11-2.1ubuntu0.1_amd64.deb ... Unpacking libnuma1:amd64 (2.0.11-2.1ubuntu0.1) ... Selecting previously unselected package rsync. Preparing to unpack .../005-rsync_3.1.2-2.1ubuntu1_amd64.deb ... Unpacking rsync (3.1.2-2.1ubuntu1) ... Selecting previously unselected package libgraphite2-3:amd64. Preparing to unpack .../006-libgraphite2-3_1.3.11-2_amd64.deb ... Unpacking libgraphite2-3:amd64 (1.3.11-2) ... Selecting previously unselected package libharfbuzz0b:amd64. Preparing to unpack .../007-libharfbuzz0b_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64. Preparing to unpack .../008-gir1.2-harfbuzz-0.0_1.7.2-1ubuntu1_amd64.deb ... Unpacking gir1.2-harfbuzz-0.0:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libnl-3-200:amd64. Preparing to unpack .../009-libnl-3-200_3.2.29-0ubuntu3_amd64.deb ... Unpacking libnl-3-200:amd64 (3.2.29-0ubuntu3) ... Selecting previously unselected package libnl-route-3-200:amd64. Preparing to unpack .../010-libnl-route-3-200_3.2.29-0ubuntu3_amd64.deb ... Unpacking libnl-route-3-200:amd64 (3.2.29-0ubuntu3) ... Selecting previously unselected package libibverbs1:amd64. Preparing to unpack .../011-libibverbs1_17.1-1ubuntu0.2_amd64.deb ... Unpacking libibverbs1:amd64 (17.1-1ubuntu0.2) ... Selecting previously unselected package ibverbs-providers:amd64. Preparing to unpack .../012-ibverbs-providers_17.1-1ubuntu0.2_amd64.deb ... Unpacking ibverbs-providers:amd64 (17.1-1ubuntu0.2) ... Selecting previously unselected package icu-devtools. Preparing to unpack .../013-icu-devtools_60.2-3ubuntu3_amd64.deb ... Unpacking icu-devtools (60.2-3ubuntu3) ... Selecting previously unselected package libapr1:amd64. Preparing to unpack .../014-libapr1_1.6.3-2_amd64.deb ... Unpacking libapr1:amd64 (1.6.3-2) ... Selecting previously unselected package uuid-dev:amd64. Preparing to unpack .../015-uuid-dev_2.31.1-0.4ubuntu3.5_amd64.deb ... Unpacking uuid-dev:amd64 (2.31.1-0.4ubuntu3.5) ... Selecting previously unselected package libsctp1:amd64. Preparing to unpack .../016-libsctp1_1.0.17+dfsg-2_amd64.deb ... Unpacking libsctp1:amd64 (1.0.17+dfsg-2) ... Selecting previously unselected package libsctp-dev:amd64. Preparing to unpack .../017-libsctp-dev_1.0.17+dfsg-2_amd64.deb ... Unpacking libsctp-dev:amd64 (1.0.17+dfsg-2) ... Selecting previously unselected package libapr1-dev. Preparing to unpack .../018-libapr1-dev_1.6.3-2_amd64.deb ... Unpacking libapr1-dev (1.6.3-2) ... Selecting previously unselected package libaprutil1:amd64. Preparing to unpack .../019-libaprutil1_1.6.1-2_amd64.deb ... Unpacking libaprutil1:amd64 (1.6.1-2) ... Selecting previously unselected package libldap2-dev:amd64. Preparing to unpack .../020-libldap2-dev_2.4.45+dfsg-1ubuntu1.4_amd64.deb ... Unpacking libldap2-dev:amd64 (2.4.45+dfsg-1ubuntu1.4) ... Selecting previously unselected package libexpat1-dev:amd64. Preparing to unpack .../021-libexpat1-dev_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package libaprutil1-dev. Preparing to unpack .../022-libaprutil1-dev_1.6.1-2_amd64.deb ... Unpacking libaprutil1-dev (1.6.1-2) ... Selecting previously unselected package libboost1.65-dev:amd64. Preparing to unpack .../023-libboost1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-dev:amd64. Preparing to unpack .../024-libboost-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost1.65-tools-dev. Preparing to unpack .../025-libboost1.65-tools-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost1.65-tools-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-tools-dev. Preparing to unpack .../026-libboost-tools-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-tools-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-atomic1.65.1:amd64. Preparing to unpack .../027-libboost-atomic1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-atomic1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-atomic1.65-dev:amd64. Preparing to unpack .../028-libboost-atomic1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-atomic1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-atomic-dev:amd64. Preparing to unpack .../029-libboost-atomic-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-atomic-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-system1.65.1:amd64. Preparing to unpack .../030-libboost-system1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-system1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-chrono1.65.1:amd64. Preparing to unpack .../031-libboost-chrono1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-chrono1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-chrono1.65-dev:amd64. Preparing to unpack .../032-libboost-chrono1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-chrono1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-chrono-dev:amd64. Preparing to unpack .../033-libboost-chrono-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-chrono-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-container1.65.1:amd64. Preparing to unpack .../034-libboost-container1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-container1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-container1.65-dev:amd64. Preparing to unpack .../035-libboost-container1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-container1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-container-dev:amd64. Preparing to unpack .../036-libboost-container-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-container-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-context1.65.1:amd64. Preparing to unpack .../037-libboost-context1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-context1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-context1.65-dev:amd64. Preparing to unpack .../038-libboost-context1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-context1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-context-dev:amd64. Preparing to unpack .../039-libboost-context-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-context-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-thread1.65.1:amd64. Preparing to unpack .../040-libboost-thread1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-thread1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-coroutine1.65.1:amd64. Preparing to unpack .../041-libboost-coroutine1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-coroutine1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-coroutine1.65-dev:amd64. Preparing to unpack .../042-libboost-coroutine1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-coroutine1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-coroutine-dev:amd64. Preparing to unpack .../043-libboost-coroutine-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-coroutine-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-date-time1.65.1:amd64. Preparing to unpack .../044-libboost-date-time1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-date-time1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-serialization1.65.1:amd64. Preparing to unpack .../045-libboost-serialization1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-serialization1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-serialization1.65-dev:amd64. Preparing to unpack .../046-libboost-serialization1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-serialization1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-date-time1.65-dev:amd64. Preparing to unpack .../047-libboost-date-time1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-date-time1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-date-time-dev:amd64. Preparing to unpack .../048-libboost-date-time-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-date-time-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-exception1.65-dev:amd64. Preparing to unpack .../049-libboost-exception1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-exception1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-exception-dev:amd64. Preparing to unpack .../050-libboost-exception-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-exception-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-filesystem1.65.1:amd64. Preparing to unpack .../051-libboost-filesystem1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-filesystem1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-fiber1.65.1:amd64. Preparing to unpack .../052-libboost-fiber1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-fiber1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-fiber1.65-dev:amd64. Preparing to unpack .../053-libboost-fiber1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-fiber1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-fiber-dev:amd64. Preparing to unpack .../054-libboost-fiber-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-fiber-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-system1.65-dev:amd64. Preparing to unpack .../055-libboost-system1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-system1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-filesystem1.65-dev:amd64. Preparing to unpack .../056-libboost-filesystem1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-filesystem1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-filesystem-dev:amd64. Preparing to unpack .../057-libboost-filesystem-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-filesystem-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-regex1.65.1:amd64. Preparing to unpack .../058-libboost-regex1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-regex1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-graph1.65.1:amd64. Preparing to unpack .../059-libboost-graph1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-graph1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-test1.65.1:amd64. Preparing to unpack .../060-libboost-test1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-test1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-test1.65-dev:amd64. Preparing to unpack .../061-libboost-test1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-test1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-graph1.65-dev:amd64. Preparing to unpack .../062-libboost-graph1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-graph1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-graph-dev:amd64. Preparing to unpack .../063-libboost-graph-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-graph-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libpsm-infinipath1. Preparing to unpack .../064-libpsm-infinipath1_3.3+20.604758e7-5_amd64.deb ... Unpacking libpsm-infinipath1 (3.3+20.604758e7-5) ... Selecting previously unselected package librdmacm1:amd64. Preparing to unpack .../065-librdmacm1_17.1-1ubuntu0.2_amd64.deb ... Unpacking librdmacm1:amd64 (17.1-1ubuntu0.2) ... Selecting previously unselected package libfabric1. Preparing to unpack .../066-libfabric1_1.5.3-1_amd64.deb ... Unpacking libfabric1 (1.5.3-1) ... Selecting previously unselected package libhwloc5:amd64. Preparing to unpack .../067-libhwloc5_1.11.9-1_amd64.deb ... Unpacking libhwloc5:amd64 (1.11.9-1) ... Selecting previously unselected package ocl-icd-libopencl1:amd64. Preparing to unpack .../068-ocl-icd-libopencl1_2.2.11-1ubuntu1_amd64.deb ... Unpacking ocl-icd-libopencl1:amd64 (2.2.11-1ubuntu1) ... Selecting previously unselected package libhwloc-plugins. Preparing to unpack .../069-libhwloc-plugins_1.11.9-1_amd64.deb ... Unpacking libhwloc-plugins (1.11.9-1) ... Selecting previously unselected package libopenmpi2:amd64. Preparing to unpack .../070-libopenmpi2_2.1.1-8_amd64.deb ... Unpacking libopenmpi2:amd64 (2.1.1-8) ... Selecting previously unselected package libboost-mpi1.65.1. Preparing to unpack .../071-libboost-mpi1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-mpi1.65.1 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-graph-parallel1.65.1. Preparing to unpack .../072-libboost-graph-parallel1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-graph-parallel1.65.1 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-graph-parallel1.65-dev. Preparing to unpack .../073-libboost-graph-parallel1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-graph-parallel1.65-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-graph-parallel-dev. Preparing to unpack .../074-libboost-graph-parallel-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-graph-parallel-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libicu-le-hb0:amd64. Preparing to unpack .../075-libicu-le-hb0_1.0.3+git161113-4_amd64.deb ... Unpacking libicu-le-hb0:amd64 (1.0.3+git161113-4) ... Selecting previously unselected package libiculx60:amd64. Preparing to unpack .../076-libiculx60_60.2-3ubuntu3_amd64.deb ... Unpacking libiculx60:amd64 (60.2-3ubuntu3) ... Selecting previously unselected package libharfbuzz-icu0:amd64. Preparing to unpack .../077-libharfbuzz-icu0_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz-icu0:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libharfbuzz-gobject0:amd64. Preparing to unpack .../078-libharfbuzz-gobject0_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libglib2.0-bin. Preparing to unpack .../079-libglib2.0-bin_2.56.4-0ubuntu0.18.04.4_amd64.deb ... Unpacking libglib2.0-bin (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libglib2.0-dev-bin. Preparing to unpack .../080-libglib2.0-dev-bin_2.56.4-0ubuntu0.18.04.4_amd64.deb ... Unpacking libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libpcre16-3:amd64. Preparing to unpack .../081-libpcre16-3_2%3a8.39-9_amd64.deb ... Unpacking libpcre16-3:amd64 (2:8.39-9) ... Selecting previously unselected package libpcre32-3:amd64. Preparing to unpack .../082-libpcre32-3_2%3a8.39-9_amd64.deb ... Unpacking libpcre32-3:amd64 (2:8.39-9) ... Selecting previously unselected package libpcrecpp0v5:amd64. Preparing to unpack .../083-libpcrecpp0v5_2%3a8.39-9_amd64.deb ... Unpacking libpcrecpp0v5:amd64 (2:8.39-9) ... Selecting previously unselected package libpcre3-dev:amd64. Preparing to unpack .../084-libpcre3-dev_2%3a8.39-9_amd64.deb ... Unpacking libpcre3-dev:amd64 (2:8.39-9) ... Selecting previously unselected package pkg-config. Preparing to unpack .../085-pkg-config_0.29.1-0ubuntu2_amd64.deb ... Unpacking pkg-config (0.29.1-0ubuntu2) ... Selecting previously unselected package zlib1g-dev:amd64. Preparing to unpack .../086-zlib1g-dev_1%3a1.2.11.dfsg-0ubuntu2_amd64.deb ... Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... Selecting previously unselected package libglib2.0-dev:amd64. Preparing to unpack .../087-libglib2.0-dev_2.56.4-0ubuntu0.18.04.4_amd64.deb ... Unpacking libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.4) ... Selecting previously unselected package libgraphite2-dev:amd64. Preparing to unpack .../088-libgraphite2-dev_1.3.11-2_amd64.deb ... Unpacking libgraphite2-dev:amd64 (1.3.11-2) ... Selecting previously unselected package libharfbuzz-dev:amd64. Preparing to unpack .../089-libharfbuzz-dev_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libicu-le-hb-dev:amd64. Preparing to unpack .../090-libicu-le-hb-dev_1.0.3+git161113-4_amd64.deb ... Unpacking libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ... Selecting previously unselected package libicu-dev. Preparing to unpack .../091-libicu-dev_60.2-3ubuntu3_amd64.deb ... Unpacking libicu-dev (60.2-3ubuntu3) ... Selecting previously unselected package libboost-regex1.65-dev:amd64. Preparing to unpack .../092-libboost-regex1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-regex1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-iostreams1.65.1:amd64. Preparing to unpack .../093-libboost-iostreams1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-iostreams1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-iostreams1.65-dev:amd64. Preparing to unpack .../094-libboost-iostreams1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-iostreams1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-iostreams-dev:amd64. Preparing to unpack .../095-libboost-iostreams-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-iostreams-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-locale1.65.1:amd64. Preparing to unpack .../096-libboost-locale1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-locale1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-locale1.65-dev:amd64. Preparing to unpack .../097-libboost-locale1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-locale1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-locale-dev:amd64. Preparing to unpack .../098-libboost-locale-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-locale-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-log1.65.1. Preparing to unpack .../099-libboost-log1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-log1.65.1 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-thread1.65-dev:amd64. Preparing to unpack .../100-libboost-thread1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-thread1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-log1.65-dev. Preparing to unpack .../101-libboost-log1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-log1.65-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-log-dev. Preparing to unpack .../102-libboost-log-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-log-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-math1.65.1:amd64. Preparing to unpack .../103-libboost-math1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-math1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-math1.65-dev:amd64. Preparing to unpack .../104-libboost-math1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-math1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-math-dev:amd64. Preparing to unpack .../105-libboost-math-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-math-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package openmpi-common. Preparing to unpack .../106-openmpi-common_2.1.1-8_all.deb ... Unpacking openmpi-common (2.1.1-8) ... Selecting previously unselected package libibverbs-dev:amd64. Preparing to unpack .../107-libibverbs-dev_17.1-1ubuntu0.2_amd64.deb ... Unpacking libibverbs-dev:amd64 (17.1-1ubuntu0.2) ... Selecting previously unselected package libnuma-dev:amd64. Preparing to unpack .../108-libnuma-dev_2.0.11-2.1ubuntu0.1_amd64.deb ... Unpacking libnuma-dev:amd64 (2.0.11-2.1ubuntu0.1) ... Selecting previously unselected package libhwloc-dev:amd64. Preparing to unpack .../109-libhwloc-dev_1.11.9-1_amd64.deb ... Unpacking libhwloc-dev:amd64 (1.11.9-1) ... Selecting previously unselected package libopenmpi-dev. Preparing to unpack .../110-libopenmpi-dev_2.1.1-8_amd64.deb ... Unpacking libopenmpi-dev (2.1.1-8) ... Selecting previously unselected package mpi-default-dev. Preparing to unpack .../111-mpi-default-dev_1.10_amd64.deb ... Unpacking mpi-default-dev (1.10) ... Selecting previously unselected package libboost-mpi1.65-dev. Preparing to unpack .../112-libboost-mpi1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-mpi1.65-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-mpi-dev. Preparing to unpack .../113-libboost-mpi-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-mpi-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-python1.65.1. Preparing to unpack .../114-libboost-python1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-python1.65.1 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package openmpi-bin. Preparing to unpack .../115-openmpi-bin_2.1.1-8_amd64.deb ... Unpacking openmpi-bin (2.1.1-8) ... Selecting previously unselected package mpi-default-bin. Preparing to unpack .../116-mpi-default-bin_1.10_amd64.deb ... Unpacking mpi-default-bin (1.10) ... Selecting previously unselected package libboost-mpi-python1.65.1. Preparing to unpack .../117-libboost-mpi-python1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-mpi-python1.65.1 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-mpi-python1.65-dev. Preparing to unpack .../118-libboost-mpi-python1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-mpi-python1.65-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-mpi-python-dev. Preparing to unpack .../119-libboost-mpi-python-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-mpi-python-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-numpy1.65.1. Preparing to unpack .../120-libboost-numpy1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-numpy1.65.1 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-numpy1.65-dev. Preparing to unpack .../121-libboost-numpy1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-numpy1.65-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-numpy-dev. Preparing to unpack .../122-libboost-numpy-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-numpy-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-program-options1.65.1:amd64. Preparing to unpack .../123-libboost-program-options1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-program-options1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-program-options1.65-dev:amd64. Preparing to unpack .../124-libboost-program-options1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-program-options1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-program-options-dev:amd64. Preparing to unpack .../125-libboost-program-options-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-program-options-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libpython2.7:amd64. Preparing to unpack .../126-libpython2.7_2.7.17-1~18.04_amd64.deb ... Unpacking libpython2.7:amd64 (2.7.17-1~18.04) ... Selecting previously unselected package libpython2.7-dev:amd64. Preparing to unpack .../127-libpython2.7-dev_2.7.17-1~18.04_amd64.deb ... Unpacking libpython2.7-dev:amd64 (2.7.17-1~18.04) ... Selecting previously unselected package libpython-dev:amd64. Preparing to unpack .../128-libpython-dev_2.7.15~rc1-1_amd64.deb ... Unpacking libpython-dev:amd64 (2.7.15~rc1-1) ... Selecting previously unselected package python2.7-dev. Preparing to unpack .../129-python2.7-dev_2.7.17-1~18.04_amd64.deb ... Unpacking python2.7-dev (2.7.17-1~18.04) ... Selecting previously unselected package python-dev. Preparing to unpack .../130-python-dev_2.7.15~rc1-1_amd64.deb ... Unpacking python-dev (2.7.15~rc1-1) ... Selecting previously unselected package libpython3.6:amd64. Preparing to unpack .../131-libpython3.6_3.6.9-1~18.04_amd64.deb ... Unpacking libpython3.6:amd64 (3.6.9-1~18.04) ... Selecting previously unselected package libpython3.6-dev:amd64. Preparing to unpack .../132-libpython3.6-dev_3.6.9-1~18.04_amd64.deb ... Unpacking libpython3.6-dev:amd64 (3.6.9-1~18.04) ... Selecting previously unselected package libpython3-dev:amd64. Preparing to unpack .../133-libpython3-dev_3.6.7-1~18.04_amd64.deb ... Unpacking libpython3-dev:amd64 (3.6.7-1~18.04) ... Selecting previously unselected package python3.6-dev. Preparing to unpack .../134-python3.6-dev_3.6.9-1~18.04_amd64.deb ... Unpacking python3.6-dev (3.6.9-1~18.04) ... Selecting previously unselected package python3-dev. Preparing to unpack .../135-python3-dev_3.6.7-1~18.04_amd64.deb ... Unpacking python3-dev (3.6.7-1~18.04) ... Selecting previously unselected package libboost-python1.65-dev. Preparing to unpack .../136-libboost-python1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-python1.65-dev (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-python-dev. Preparing to unpack .../137-libboost-python-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-python-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-random1.65.1:amd64. Preparing to unpack .../138-libboost-random1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-random1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-random1.65-dev:amd64. Preparing to unpack .../139-libboost-random1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-random1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-random-dev:amd64. Preparing to unpack .../140-libboost-random-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-random-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-regex-dev:amd64. Preparing to unpack .../141-libboost-regex-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-regex-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-serialization-dev:amd64. Preparing to unpack .../142-libboost-serialization-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-serialization-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-signals1.65.1:amd64. Preparing to unpack .../143-libboost-signals1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-signals1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-signals1.65-dev:amd64. Preparing to unpack .../144-libboost-signals1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-signals1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-signals-dev:amd64. Preparing to unpack .../145-libboost-signals-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-signals-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-stacktrace1.65.1:amd64. Preparing to unpack .../146-libboost-stacktrace1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-stacktrace1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-stacktrace1.65-dev:amd64. Preparing to unpack .../147-libboost-stacktrace1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-stacktrace1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-stacktrace-dev:amd64. Preparing to unpack .../148-libboost-stacktrace-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-stacktrace-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-system-dev:amd64. Preparing to unpack .../149-libboost-system-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-system-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-test-dev:amd64. Preparing to unpack .../150-libboost-test-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-test-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-thread-dev:amd64. Preparing to unpack .../151-libboost-thread-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-thread-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-timer1.65.1:amd64. Preparing to unpack .../152-libboost-timer1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-timer1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-timer1.65-dev:amd64. Preparing to unpack .../153-libboost-timer1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-timer1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-timer-dev:amd64. Preparing to unpack .../154-libboost-timer-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-timer-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-type-erasure1.65.1:amd64. Preparing to unpack .../155-libboost-type-erasure1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-type-erasure1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-type-erasure1.65-dev:amd64. Preparing to unpack .../156-libboost-type-erasure1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-type-erasure1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-type-erasure-dev:amd64. Preparing to unpack .../157-libboost-type-erasure-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-type-erasure-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-wave1.65.1:amd64. Preparing to unpack .../158-libboost-wave1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-wave1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-wave1.65-dev:amd64. Preparing to unpack .../159-libboost-wave1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ... Unpacking libboost-wave1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Selecting previously unselected package libboost-wave-dev:amd64. Preparing to unpack .../160-libboost-wave-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-wave-dev:amd64 (1.65.1.0ubuntu1) ... Selecting previously unselected package libboost-all-dev. Preparing to unpack .../161-libboost-all-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-all-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libconsole-bridge0.4:amd64. Preparing to unpack .../162-libconsole-bridge0.4_0.4.0+dfsg-2_amd64.deb ... Unpacking libconsole-bridge0.4:amd64 (0.4.0+dfsg-2) ... Selecting previously unselected package liblog4cxx10v5:amd64. Preparing to unpack .../163-liblog4cxx10v5_0.10.0-13ubuntu2_amd64.deb ... Unpacking liblog4cxx10v5:amd64 (0.10.0-13ubuntu2) ... Selecting previously unselected package python-yaml. Preparing to unpack .../164-python-yaml_3.12-1build2_amd64.deb ... Unpacking python-yaml (3.12-1build2) ... Selecting previously unselected package libconsole-bridge-dev:amd64. Preparing to unpack .../165-libconsole-bridge-dev_0.4.0+dfsg-2_amd64.deb ... Unpacking libconsole-bridge-dev:amd64 (0.4.0+dfsg-2) ... Selecting previously unselected package liblog4cxx-dev:amd64. Preparing to unpack .../166-liblog4cxx-dev_0.10.0-13ubuntu2_amd64.deb ... Unpacking liblog4cxx-dev:amd64 (0.10.0-13ubuntu2) ... Selecting previously unselected package ros-melodic-cpp-common. Preparing to unpack .../167-ros-melodic-cpp-common_0.6.13-1bionic.20191210.220749_amd64.deb ... Unpacking ros-melodic-cpp-common (0.6.13-1bionic.20191210.220749) ... Selecting previously unselected package ros-melodic-genmsg. Preparing to unpack .../168-ros-melodic-genmsg_0.5.12-0bionic.20191210.213309_amd64.deb ... Unpacking ros-melodic-genmsg (0.5.12-0bionic.20191210.213309) ... Selecting previously unselected package ros-melodic-gencpp. Preparing to unpack .../169-ros-melodic-gencpp_0.6.2-0bionic.20191210.213617_amd64.deb ... Unpacking ros-melodic-gencpp (0.6.2-0bionic.20191210.213617) ... Selecting previously unselected package ros-melodic-geneus. Preparing to unpack .../170-ros-melodic-geneus_2.2.6-0bionic.20191210.213628_amd64.deb ... Unpacking ros-melodic-geneus (2.2.6-0bionic.20191210.213628) ... Selecting previously unselected package ros-melodic-genlisp. Preparing to unpack .../171-ros-melodic-genlisp_0.4.16-0bionic.20191210.213632_amd64.deb ... Unpacking ros-melodic-genlisp (0.4.16-0bionic.20191210.213632) ... Selecting previously unselected package ros-melodic-gennodejs. Preparing to unpack .../172-ros-melodic-gennodejs_2.0.1-0bionic.20191210.213642_amd64.deb ... Unpacking ros-melodic-gennodejs (2.0.1-0bionic.20191210.213642) ... Selecting previously unselected package ros-melodic-genpy. Preparing to unpack .../173-ros-melodic-genpy_0.6.9-1bionic.20191210.213746_amd64.deb ... Unpacking ros-melodic-genpy (0.6.9-1bionic.20191210.213746) ... Selecting previously unselected package ros-melodic-message-generation. Preparing to unpack .../174-ros-melodic-message-generation_0.4.0-0bionic.20191210.214126_amd64.deb ... Unpacking ros-melodic-message-generation (0.4.0-0bionic.20191210.214126) ... Selecting previously unselected package ros-melodic-rostime. Preparing to unpack .../175-ros-melodic-rostime_0.6.13-1bionic.20191210.221315_amd64.deb ... Unpacking ros-melodic-rostime (0.6.13-1bionic.20191210.221315) ... Selecting previously unselected package ros-melodic-roscpp-traits. Preparing to unpack .../176-ros-melodic-roscpp-traits_0.6.13-1bionic.20191210.221749_amd64.deb ... Unpacking ros-melodic-roscpp-traits (0.6.13-1bionic.20191210.221749) ... Selecting previously unselected package ros-melodic-roscpp-serialization. Preparing to unpack .../177-ros-melodic-roscpp-serialization_0.6.13-1bionic.20191210.222426_amd64.deb ... Unpacking ros-melodic-roscpp-serialization (0.6.13-1bionic.20191210.222426) ... Selecting previously unselected package ros-melodic-message-runtime. Preparing to unpack .../178-ros-melodic-message-runtime_0.4.12-0bionic.20191210.222922_amd64.deb ... Unpacking ros-melodic-message-runtime (0.4.12-0bionic.20191210.222922) ... Selecting previously unselected package ros-melodic-rosbuild. Preparing to unpack .../179-ros-melodic-rosbuild_1.14.7-1bionic.20191210.223542_amd64.deb ... Unpacking ros-melodic-rosbuild (1.14.7-1bionic.20191210.223542) ... Selecting previously unselected package ros-melodic-rosconsole. Preparing to unpack .../180-ros-melodic-rosconsole_1.13.11-1bionic.20191210.224323_amd64.deb ... Unpacking ros-melodic-rosconsole (1.13.11-1bionic.20191210.224323) ... Selecting previously unselected package ros-melodic-std-msgs. Preparing to unpack .../181-ros-melodic-std-msgs_0.5.12-0bionic.20191210.223600_amd64.deb ... Unpacking ros-melodic-std-msgs (0.5.12-0bionic.20191210.223600) ... Selecting previously unselected package ros-melodic-rosgraph-msgs. Preparing to unpack .../182-ros-melodic-rosgraph-msgs_1.11.2-0bionic.20191210.224335_amd64.deb ... Unpacking ros-melodic-rosgraph-msgs (1.11.2-0bionic.20191210.224335) ... Selecting previously unselected package ros-melodic-xmlrpcpp. Preparing to unpack .../183-ros-melodic-xmlrpcpp_1.14.3-0bionic.20191210.221748_amd64.deb ... Unpacking ros-melodic-xmlrpcpp (1.14.3-0bionic.20191210.221748) ... Selecting previously unselected package ros-melodic-roscpp. Preparing to unpack .../184-ros-melodic-roscpp_1.14.3-0bionic.20191210.230336_amd64.deb ... Unpacking ros-melodic-roscpp (1.14.3-0bionic.20191210.230336) ... Setting up libldap2-dev:amd64 (2.4.45+dfsg-1ubuntu1.4) ... Setting up libapr1:amd64 (1.6.3-2) ... Setting up libboost-container1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-date-time1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libpopt0:amd64 (1.16-11) ... Setting up libboost-iostreams1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-stacktrace1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-python1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up libsctp1:amd64 (1.0.17+dfsg-2) ... Setting up libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.4) ... Setting up libconsole-bridge0.4:amd64 (0.4.0+dfsg-2) ... Setting up libnuma1:amd64 (2.0.11-2.1ubuntu0.1) ... Setting up libboost-atomic1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up uuid-dev:amd64 (2.31.1-0.4ubuntu3.5) ... Setting up libboost-signals1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libhwloc5:amd64 (1.11.9-1) ... Setting up libboost-serialization1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libgirepository-1.0-1:amd64 (1.56.1-1) ... Setting up libgraphite2-3:amd64 (1.3.11-2) ... Setting up rsync (3.1.2-2.1ubuntu1) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of restart. Setting up libpsm-infinipath1 (3.3+20.604758e7-5) ... update-alternatives: using /usr/lib/libpsm1/libpsm_infinipath.so.1.16 to provide /usr/lib/x86_64-linux-gnu/libpsm_infinipath.so.1 (libpsm_infinipath.so.1) in auto mode Setting up libboost-system1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-context1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up pkg-config (0.29.1-0ubuntu2) ... Setting up libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Setting up gir1.2-glib-2.0:amd64 (1.56.1-1) ... Setting up openmpi-common (2.1.1-8) ... Setting up libboost-thread1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libaprutil1:amd64 (1.6.1-2) ... Setting up libconsole-bridge-dev:amd64 (0.4.0+dfsg-2) ... Setting up libpython2.7:amd64 (2.7.17-1~18.04) ... Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... Setting up libboost-chrono1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libpcrecpp0v5:amd64 (2:8.39-9) ... Setting up libpcre32-3:amd64 (2:8.39-9) ... Setting up libpython2.7-dev:amd64 (2.7.17-1~18.04) ... Setting up icu-devtools (60.2-3ubuntu3) ... Setting up libpcre16-3:amd64 (2:8.39-9) ... Setting up libnuma-dev:amd64 (2.0.11-2.1ubuntu0.1) ... Setting up ocl-icd-libopencl1:amd64 (2.2.11-1ubuntu1) ... Setting up libboost-program-options1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-numpy1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up libnl-3-200:amd64 (3.2.29-0ubuntu3) ... Setting up ros-melodic-genmsg (0.5.12-0bionic.20191210.213309) ... Setting up libboost-test1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libglib2.0-bin (2.56.4-0ubuntu0.18.04.4) ... Setting up libboost1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up python2.7-dev (2.7.17-1~18.04) ... Setting up libgraphite2-dev:amd64 (1.3.11-2) ... Setting up libboost-locale1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-random1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost1.65-tools-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-signals1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-math1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libpython3.6:amd64 (3.6.9-1~18.04) ... Setting up libboost-regex1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-signals-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-locale1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... Setting up libboost-locale-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libpython-dev:amd64 (2.7.15~rc1-1) ... Setting up libsctp-dev:amd64 (1.0.17+dfsg-2) ... Setting up libboost-tools-dev (1.65.1.0ubuntu1) ... Setting up liblog4cxx10v5:amd64 (0.10.0-13ubuntu2) ... Setting up libboost-program-options1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up python-yaml (3.12-1build2) ... Setting up libboost-stacktrace1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libpcre3-dev:amd64 (2:8.39-9) ... Setting up libboost-atomic1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up ros-melodic-gencpp (0.6.2-0bionic.20191210.213617) ... Setting up libapr1-dev (1.6.3-2) ... Setting up libboost-atomic-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-test1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libhwloc-dev:amd64 (1.11.9-1) ... Setting up ros-melodic-genpy (0.6.9-1bionic.20191210.213746) ... Setting up libboost-numpy1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up python-dev (2.7.15~rc1-1) ... Setting up libboost-filesystem1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-stacktrace-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libaprutil1-dev (1.6.1-2) ... Setting up ros-melodic-gennodejs (2.0.1-0bionic.20191210.213642) ... Setting up libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... Setting up libnl-route-3-200:amd64 (3.2.29-0ubuntu3) ... Setting up libboost-type-erasure1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-serialization1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-chrono1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-graph1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-exception1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libpython3.6-dev:amd64 (3.6.9-1~18.04) ... Setting up libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.4) ... Setting up libboost-log1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up ros-melodic-geneus (2.2.6-0bionic.20191210.213628) ... Setting up libboost-coroutine1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libhwloc-plugins (1.11.9-1) ... Setting up libboost-exception-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-random1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up gir1.2-harfbuzz-0.0:amd64 (1.7.2-1ubuntu1) ... Setting up libboost-wave1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up liblog4cxx-dev:amd64 (0.10.0-13ubuntu2) ... Setting up libboost-context1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-timer1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-context-dev:amd64 (1.65.1.0ubuntu1) ... Setting up ros-melodic-genlisp (0.4.16-0bionic.20191210.213632) ... Setting up libboost-test-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-system1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-container1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up python3.6-dev (3.6.9-1~18.04) ... Setting up libboost-math1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-math-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-numpy-dev (1.65.1.0ubuntu1) ... Setting up libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ... Setting up libboost-type-erasure1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-program-options-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libpython3-dev:amd64 (3.6.7-1~18.04) ... Setting up libibverbs1:amd64 (17.1-1ubuntu0.2) ... Setting up libboost-fiber1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-serialization-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-fiber1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-coroutine1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libharfbuzz-icu0:amd64 (1.7.2-1ubuntu1) ... Setting up libboost-graph1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-date-time1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-chrono-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-system-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-graph-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libicu-le-hb0:amd64 (1.0.3+git161113-4) ... Setting up libboost-type-erasure-dev:amd64 (1.65.1.0ubuntu1) ... Setting up python3-dev (3.6.7-1~18.04) ... Setting up libboost-fiber-dev:amd64 (1.65.1.0ubuntu1) ... Setting up librdmacm1:amd64 (17.1-1ubuntu0.2) ... Setting up libboost-date-time-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-filesystem1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-container-dev:amd64 (1.65.1.0ubuntu1) ... Setting up ros-melodic-message-generation (0.4.0-0bionic.20191210.214126) ... Setting up libboost-random-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-thread1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-timer1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-python1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up ibverbs-providers:amd64 (17.1-1ubuntu0.2) ... Setting up libiculx60:amd64 (60.2-3ubuntu3) ... Setting up libboost-coroutine-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libibverbs-dev:amd64 (17.1-1ubuntu0.2) ... Setting up libboost-python-dev (1.65.1.0ubuntu1) ... Setting up libboost-thread-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libfabric1 (1.5.3-1) ... Setting up libboost-wave1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-timer-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-filesystem-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-log1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-wave-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libopenmpi2:amd64 (2.1.1-8) ... Setting up libboost-mpi1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up libopenmpi-dev (2.1.1-8) ... update-alternatives: using /usr/lib/x86_64-linux-gnu/openmpi/include to provide /usr/include/mpi (mpi) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/mpicc.1.gz because associated file /usr/share/man/man1/mpicc.openmpi.1.gz (of link group mpi) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpic++.1.gz because associated file /usr/share/man/man1/mpic++.openmpi.1.gz (of link group mpi) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpicxx.1.gz because associated file /usr/share/man/man1/mpicxx.openmpi.1.gz (of link group mpi) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpiCC.1.gz because associated file /usr/share/man/man1/mpiCC.openmpi.1.gz (of link group mpi) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpif77.1.gz because associated file /usr/share/man/man1/mpif77.openmpi.1.gz (of link group mpi) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpif90.1.gz because associated file /usr/share/man/man1/mpif90.openmpi.1.gz (of link group mpi) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpifort.1.gz because associated file /usr/share/man/man1/mpifort.openmpi.1.gz (of link group mpi) doesn't exist Setting up openmpi-bin (2.1.1-8) ... update-alternatives: using /usr/bin/mpirun.openmpi to provide /usr/bin/mpirun (mpirun) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/mpirun.1.gz because associated file /usr/share/man/man1/mpirun.openmpi.1.gz (of link group mpirun) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/mpiexec.1.gz because associated file /usr/share/man/man1/mpiexec.openmpi.1.gz (of link group mpirun) doesn't exist Setting up mpi-default-dev (1.10) ... Setting up libboost-log-dev (1.65.1.0ubuntu1) ... Setting up libboost-mpi1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up mpi-default-bin (1.10) ... Setting up libboost-graph-parallel1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-graph-parallel1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-graph-parallel-dev (1.65.1.0ubuntu1) ... Setting up libboost-mpi-dev (1.65.1.0ubuntu1) ... Setting up libboost-mpi-python1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-mpi-python1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-mpi-python-dev (1.65.1.0ubuntu1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ... No schema files found: doing nothing. Processing triggers for libc-bin (2.27-3ubuntu1) ... Setting up libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ... Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ... Setting up libicu-dev (60.2-3ubuntu3) ... Setting up libboost-regex1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-iostreams1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-iostreams-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-regex-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-all-dev (1.65.1.0ubuntu1) ... Setting up ros-melodic-cpp-common (0.6.13-1bionic.20191210.220749) ... Setting up ros-melodic-rostime (0.6.13-1bionic.20191210.221315) ... Setting up ros-melodic-xmlrpcpp (1.14.3-0bionic.20191210.221748) ... Setting up ros-melodic-roscpp-traits (0.6.13-1bionic.20191210.221749) ... Setting up ros-melodic-roscpp-serialization (0.6.13-1bionic.20191210.222426) ... Setting up ros-melodic-message-runtime (0.4.12-0bionic.20191210.222922) ... Setting up ros-melodic-std-msgs (0.5.12-0bionic.20191210.223600) ... Setting up ros-melodic-rosbuild (1.14.7-1bionic.20191210.223542) ... Setting up ros-melodic-rosgraph-msgs (1.11.2-0bionic.20191210.224335) ... Setting up ros-melodic-rosconsole (1.13.11-1bionic.20191210.224323) ... Setting up ros-melodic-roscpp (1.14.3-0bionic.20191210.230336) ... Invoking 'apt-get clean' Removing intermediate container 161a8ce9b948 ---> a95ad878650e Step 31/33 : USER buildfarm ---> Running in 6d0fd8911d29 Removing intermediate container 6d0fd8911d29 ---> 0031231a35ca Step 32/33 : ENTRYPOINT ["sh", "-c"] ---> Running in 052a6c3c7c63 Removing intermediate container 052a6c3c7c63 ---> ec677193115e Step 33/33 : CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic prism_strands --sourcedeb-dir /tmp/binarydeb"] ---> Running in 81e9723c8f12 Removing intermediate container 81e9723c8f12 ---> 9773cd24d3f0 Successfully built 9773cd24d3f0 Successfully tagged binarydeb_build.melodic_ubuntu_bionic_amd64_prism_strands:latest + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - build binarydeb # BEGIN SECTION: Run Dockerfile - build binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_prism_strands # BEGIN SUBSECTION: build binarydeb Package 'ros-melodic-prism-strands' version: 1.2.5-1bionic.20200213.140826 Invoking 'apt-src build ros-melodic-prism-strands' in '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' I: Building in /tmp/binarydeb/ros-melodic-prism-strands-1.2.5 .. dpkg-buildpackage: info: source package ros-melodic-prism-strands dpkg-buildpackage: info: source version 1.2.5-1bionic.20200213.140826 dpkg-buildpackage: info: source distribution bionic dpkg-buildpackage: info: source changed by Bruno Lacerda dpkg-source --before-build ros-melodic-prism-strands-1.2.5 dpkg-buildpackage: info: host architecture amd64 dpkg-source: info: using options from ros-melodic-prism-strands-1.2.5/debian/source/options: --auto-commit fakeroot debian/rules clean dh clean -v --buildsystem=cmake dh_testdir -O-v -O--buildsystem=cmake dh_auto_clean -O-v -O--buildsystem=cmake dh_clean -O-v -O--buildsystem=cmake rm -f debian/debhelper-build-stamp rm -rf debian/.debhelper/ rm -f -- debian/ros-melodic-prism-strands.substvars debian/files rm -fr -- debian/ros-melodic-prism-strands/ debian/tmp/ find . \( \( \ \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \ \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ \) -exec rm -f {} + \) -o \ \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) debian/rules build dh build -v --buildsystem=cmake dh_testdir -O-v -O--buildsystem=cmake dh_update_autotools_config -O-v -O--buildsystem=cmake debian/rules override_dh_auto_configure make[1]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_configure -- \ -DCATKIN_BUILD_BINARY_PACKAGE="1" \ -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \ -DCMAKE_PREFIX_PATH="/opt/ros/melodic" install -d obj-x86_64-linux-gnu cd obj-x86_64-linux-gnu && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -DCMAKE_PREFIX_PATH=/opt/ros/melodic -- The C compiler identification is GNU 7.4.0 -- The CXX compiler identification is GNU 7.4.0 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/devel -- Using CMAKE_PREFIX_PATH: /opt/ros/melodic -- This workspace overlays: /opt/ros/melodic -- Found PythonInterp: /usr/bin/python (found version "2.7.17") -- Using PYTHON_EXECUTABLE: /usr/bin/python -- Using Debian Python package layout -- Using empy: /usr/bin/empy -- Using CATKIN_ENABLE_TESTING: ON -- Skip enable_testing() when building binary package -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/test_results -- Found gtest sources under '/usr/src/googletest': gtests will be built -- Found gmock sources under '/usr/src/googletest': gmock will be built -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Using Python nosetests: /usr/bin/nosetests-2.7 -- catkin 0.7.20 -- BUILD_SHARED_LIBS is on Did not find JAVA_HOME, so setting our own -- Found Java: /usr/bin/java (found suitable version "11.0.6", minimum required is "1.8") found components: Development Using JAVA_DIR as /usr/lib/jvm/java-11-openjdk-amd64/bin/.. -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_EXPORT_NO_PACKAGE_REGISTRY CMAKE_INSTALL_LOCALSTATEDIR CMAKE_INSTALL_SYSCONFDIR -- Build files have been written to: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' debian/rules override_dh_auto_build make[1]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_build cd obj-x86_64-linux-gnu && make -j1 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-prism-strands-1.2.5 -B/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make -f CMakeFiles/prism.dir/build.make CMakeFiles/prism.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-prism-strands-1.2.5 /tmp/binarydeb/ros-melodic-prism-strands-1.2.5 /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/prism.dir/DependInfo.cmake --color= Scanning dependencies of target prism make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make -f CMakeFiles/prism.dir/build.make CMakeFiles/prism.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' [ 12%] Creating directories for 'prism' /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/tmp /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-mkdir [ 25%] Performing download step (download, verify and extract) for 'prism' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src && /usr/bin/cmake -P /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/download-prism.cmake -- Downloading... dst='/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/v4.4.robots.1.tar.gz' timeout='none' -- Using src='https://github.com/bfalacerda/prism/archive/v4.4.robots.1.tar.gz' -- Downloading... done cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src && /usr/bin/cmake -P /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/verify-prism.cmake cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src && /usr/bin/cmake -P /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/extract-prism.cmake -- extracting... src='/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/v4.4.robots.1.tar.gz' dst='/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism' -- extracting... [tar xfz] -- extracting... [analysis] -- extracting... [rename] -- extracting... [clean up] -- extracting... done cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src && /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-download [ 37%] No patch step for 'prism' /usr/bin/cmake -E echo_append /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-patch [ 50%] No update step for 'prism' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism && /usr/bin/cmake -E echo_append cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism && /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-update [ 62%] No configure step for 'prism' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism && /usr/bin/cmake -E echo_append cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism && /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-configure [ 75%] Performing build step for 'prism' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism && PATH=/usr/lib/jvm/java-11-openjdk-amd64/bin/../bin:/opt/ros/melodic/bin:/usr/lib/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin make JAVA_DIR=/usr/lib/jvm/java-11-openjdk-amd64/bin/.. make[5]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism' VERSION: 4.4.dev OSTYPE/ARCH: linux amd64 JAVA_DIR: /usr/lib/jvm/java-11-openjdk-amd64/bin/.. JAVA_DIR_BACKUP: JAVAC: /usr/lib/jvm/java-11-openjdk-amd64/bin/../bin/javac Making cudd ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd' sh ./setup.sh Making cudd ... make[7]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/cudd' gcc -c cuddAPI.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddAbs.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddApply.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddFind.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddIte.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddInv.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddNeg.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAddWalsh.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAndAbs.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddAnneal.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddApa.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddApprox.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddBddAbs.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddBddCorr.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddBddIte.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddBridge.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddCache.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddCheck.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddClip.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddCof.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddCompose.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddDecomp.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddEssent.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddExact.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddExport.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddGenCof.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddGenetic.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddGroup.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddHarwell.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddInit.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddInteract.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddLCache.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddLevelQ.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddLinear.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddLiteral.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddMatMult.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddPriority.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddRead.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddRef.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddReorder.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSat.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSign.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSolve.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSplit.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSubsetHB.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSubsetSP.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddSymmetry.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddTable.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddUtil.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddWindow.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddCount.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddFuncs.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddGroup.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddIsop.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddLin.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddMisc.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddPort.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddReord.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddSetop.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddSymm.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cuddZddUtil.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat ar rv libcudd.a cuddAPI.o cuddAddAbs.o cuddAddApply.o cuddAddFind.o cuddAddIte.o cuddAddInv.o cuddAddNeg.o cuddAddWalsh.o cuddAndAbs.o cuddAnneal.o cuddApa.o cuddApprox.o cuddBddAbs.o cuddBddCorr.o cuddBddIte.o cuddBridge.o cuddCache.o cuddCheck.o cuddClip.o cuddCof.o cuddCompose.o cuddDecomp.o cuddEssent.o cuddExact.o cuddExport.o cuddGenCof.o cuddGenetic.o cuddGroup.o cuddHarwell.o cuddInit.o cuddInteract.o cuddLCache.o cuddLevelQ.o cuddLinear.o cuddLiteral.o cuddMatMult.o cuddPriority.o cuddRead.o cuddRef.o cuddReorder.o cuddSat.o cuddSign.o cuddSolve.o cuddSplit.o cuddSubsetHB.o cuddSubsetSP.o cuddSymmetry.o cuddTable.o cuddUtil.o cuddWindow.o cuddZddCount.o cuddZddFuncs.o cuddZddGroup.o cuddZddIsop.o cuddZddLin.o cuddZddMisc.o cuddZddPort.o cuddZddReord.o cuddZddSetop.o cuddZddSymm.o cuddZddUtil.o ar: creating libcudd.a a - cuddAPI.o a - cuddAddAbs.o a - cuddAddApply.o a - cuddAddFind.o a - cuddAddIte.o a - cuddAddInv.o a - cuddAddNeg.o a - cuddAddWalsh.o a - cuddAndAbs.o a - cuddAnneal.o a - cuddApa.o a - cuddApprox.o a - cuddBddAbs.o a - cuddBddCorr.o a - cuddBddIte.o a - cuddBridge.o a - cuddCache.o a - cuddCheck.o a - cuddClip.o a - cuddCof.o a - cuddCompose.o a - cuddDecomp.o a - cuddEssent.o a - cuddExact.o a - cuddExport.o a - cuddGenCof.o a - cuddGenetic.o a - cuddGroup.o a - cuddHarwell.o a - cuddInit.o a - cuddInteract.o a - cuddLCache.o a - cuddLevelQ.o a - cuddLinear.o a - cuddLiteral.o a - cuddMatMult.o a - cuddPriority.o a - cuddRead.o a - cuddRef.o a - cuddReorder.o a - cuddSat.o a - cuddSign.o a - cuddSolve.o a - cuddSplit.o a - cuddSubsetHB.o a - cuddSubsetSP.o a - cuddSymmetry.o a - cuddTable.o a - cuddUtil.o a - cuddWindow.o a - cuddZddCount.o a - cuddZddFuncs.o a - cuddZddGroup.o a - cuddZddIsop.o a - cuddZddLin.o a - cuddZddMisc.o a - cuddZddPort.o a - cuddZddReord.o a - cuddZddSetop.o a - cuddZddSymm.o a - cuddZddUtil.o ranlib libcudd.a make[7]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/cudd' Making dddmp ... make[7]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/dddmp' gcc -c dddmpStoreBdd.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpStoreAdd.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpStoreCnf.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpLoad.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat dddmpLoad.c: In function ‘DddmpCuddDdArrayLoad’: dddmpLoad.c:1112:3: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result] fgets (buf, DDDMP_MAXSTRLEN-1,fp); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dddmpLoad.c: In function ‘DddmpBddReadHeader’: dddmpLoad.c:1276:7: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result] fgets(buf,DDDMP_MAXSTRLEN,fp); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dddmpLoad.c:1429:7: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result] fgets(buf,DDDMP_MAXSTRLEN,fp); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -c dddmpLoadCnf.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat dddmpLoadCnf.c: In function ‘DddmpBddReadHeaderCnf’: dddmpLoadCnf.c:557:7: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] fscanf (fp, "%*s %d %d", &nv, &nc); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dddmpLoadCnf.c:572:7: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result] fgets (buf, DDDMP_MAXSTRLEN, fp); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dddmpLoadCnf.c: In function ‘DddmpReadCnfClauses’: dddmpLoadCnf.c:814:7: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result] fgets (word, DDDMP_MAX_CNF_ROW_LENGTH-1, fp); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -c dddmpNodeBdd.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpNodeAdd.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpNodeCnf.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpStoreMisc.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpUtil.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpBinary.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpConvert.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c dddmpDbg.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat dddmpDbg.c: In function ‘Dddmp_cuddBddDisplayBinary’: dddmpDbg.c:144:3: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result] fgets(buf, 999,fp); ^~~~~~~~~~~~~~~~~~ ar rv libdddmp.a dddmpStoreBdd.o dddmpStoreAdd.o dddmpStoreCnf.o dddmpLoad.o dddmpLoadCnf.o dddmpNodeBdd.o dddmpNodeAdd.o dddmpNodeCnf.o dddmpStoreMisc.o dddmpUtil.o dddmpBinary.o dddmpConvert.o dddmpDbg.o ar: creating libdddmp.a a - dddmpStoreBdd.o a - dddmpStoreAdd.o a - dddmpStoreCnf.o a - dddmpLoad.o a - dddmpLoadCnf.o a - dddmpNodeBdd.o a - dddmpNodeAdd.o a - dddmpNodeCnf.o a - dddmpStoreMisc.o a - dddmpUtil.o a - dddmpBinary.o a - dddmpConvert.o a - dddmpDbg.o ranlib libdddmp.a make[7]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/dddmp' Making mtr ... make[7]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/mtr' gcc -c mtrBasic.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c mtrGroup.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat ar rv libmtr.a mtrBasic.o mtrGroup.o ar: creating libmtr.a a - mtrBasic.o a - mtrGroup.o ranlib libmtr.a make[7]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/mtr' Making st ... make[7]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/st' gcc -c st.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat ar rv libst.a st.o ar: creating libst.a a - st.o ranlib libst.a make[7]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/st' Making util ... make[7]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/util' gcc -c cpu_time.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c cpu_stats.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c safe_mem.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c strsav.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c texpand.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c ptime.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c prtime.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c pipefork.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c pathsearch.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c stub.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat gcc -c datalimit.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat ar: creating libutil.a ar rv libutil.a cpu_time.o cpu_stats.o safe_mem.o strsav.o texpand.o ptime.o prtime.o pipefork.o pathsearch.o stub.o datalimit.o a - cpu_time.o a - cpu_stats.o a - safe_mem.o a - strsav.o a - texpand.o a - ptime.o a - prtime.o a - pipefork.o a - pathsearch.o a - stub.o a - datalimit.o ranlib libutil.a make[7]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/util' Making epd ... make[7]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/epd' gcc -c epd.c -I../include -g -O3 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat ar rv libepd.a epd.o ar: creating libepd.a a - epd.o ranlib libepd.a make[7]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd/epd' make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/cudd' Making lpsolve55 ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/ext/lpsolve55' mkdir -p lib + : + src=../lp_MDO.c ../shared/commonlib.c ../shared/mmio.c ../shared/myblas.c ../ini.c ../fortify.c ../colamd/colamd.c ../lp_rlp.c ../lp_crash.c ../bfp/bfp_LUSOL/lp_LUSOL.c ../bfp/bfp_LUSOL/LUSOL/lusol.c ../lp_Hash.c ../lp_lib.c ../lp_wlp.c ../lp_matrix.c ../lp_mipbb.c ../lp_MPS.c ../lp_params.c ../lp_presolve.c ../lp_price.c ../lp_pricePSE.c ../lp_report.c ../lp_scale.c ../lp_simplex.c ../lp_SOS.c ../lp_utils.c ../yacc_read.c + [ amd64 = ] + [ amd64 = amd64 ] + CFLAGS=-m64 -fPIC -DPIC + [ amd64 = ia64 ] + + echo #include + echo #include + echo main(){printf("ux%d", (int) (sizeof(void *)*8));} + gcc -m64 -fPIC -DPIC /tmp/platform.c -o /tmp/platform /tmp/platform.c:3:1: warning: return type defaults to ‘int’ [-Wimplicit-int] main(){printf("ux%d", (int) (sizeof(void *)*8));} ^~~~ + /tmp/platform + PLATFORM=ux64 + rm /tmp/platform /tmp/platform.c + mkdir bin bin/ux64 + + echo #include + echo #include + echo #include + echo main(){isnan(0.0);} + gcc -m64 -fPIC -DPIC /tmp/isnan.c -o /tmp/isnan + [ 0 = 0 ] + NOISNAN= + rm /tmp/isnan.c /tmp/isnan + def= + so= + [ ux64 = SCO_UNIX ] + dl=-ldl + so=y + opts=-O3 + gcc -m64 -fPIC -DPIC -s -c -I.. -I../shared -I../bfp -I../bfp/bfp_LUSOL -I../bfp/bfp_LUSOL/LUSOL -I../colamd -O3 -DYY_NEVER_INTERACTIVE -DPARSER_LP -DINVERSE_ACTIVE=INVERSE_LUSOL -DRoleIsExternalInvEngine ../lp_MDO.c ../shared/commonlib.c ../shared/mmio.c ../shared/myblas.c ../ini.c ../fortify.c ../colamd/colamd.c ../lp_rlp.c ../lp_crash.c ../bfp/bfp_LUSOL/lp_LUSOL.c ../bfp/bfp_LUSOL/LUSOL/lusol.c ../lp_Hash.c ../lp_lib.c ../lp_wlp.c ../lp_matrix.c ../lp_mipbb.c ../lp_MPS.c ../lp_params.c ../lp_presolve.c ../lp_price.c ../lp_pricePSE.c ../lp_report.c ../lp_scale.c ../lp_simplex.c ../lp_SOS.c ../lp_utils.c ../yacc_read.c + echo+ sed s/[^ ]*\///g + sed s/[.]c/.o/g ../lp_MDO.c ../shared/commonlib.c ../shared/mmio.c ../shared/myblas.c ../ini.c ../fortify.c ../colamd/colamd.c ../lp_rlp.c ../lp_crash.c ../bfp/bfp_LUSOL/lp_LUSOL.c ../bfp/bfp_LUSOL/LUSOL/lusol.c ../lp_Hash.c ../lp_lib.c ../lp_wlp.c ../lp_matrix.c ../lp_mipbb.c ../lp_MPS.c ../lp_params.c ../lp_presolve.c ../lp_price.c ../lp_pricePSE.c ../lp_report.c ../lp_scale.c ../lp_simplex.c ../lp_SOS.c ../lp_utils.c ../yacc_read.c + ar rv bin/ux64/liblpsolve55.a lp_MDO.o commonlib.o mmio.o myblas.o ini.o fortify.o colamd.o lp_rlp.o lp_crash.o lp_LUSOL.o lusol.o lp_Hash.o lp_lib.o lp_wlp.o lp_matrix.o lp_mipbb.o lp_MPS.o lp_params.o lp_presolve.o lp_price.o lp_pricePSE.o lp_report.o lp_scale.o lp_simplex.o lp_SOS.o lp_utils.o yacc_read.o ar: creating bin/ux64/liblpsolve55.a a - lp_MDO.o a - commonlib.o a - mmio.o a - myblas.o a - ini.o a - fortify.o a - colamd.o a - lp_rlp.o a - lp_crash.o a - lp_LUSOL.o a - lusol.o a - lp_Hash.o a - lp_lib.o a - lp_wlp.o a - lp_matrix.o a - lp_mipbb.o a - lp_MPS.o a - lp_params.o a - lp_presolve.o a - lp_price.o a - lp_pricePSE.o a - lp_report.o a - lp_scale.o a - lp_simplex.o a - lp_SOS.o a - lp_utils.o a - yacc_read.o + ranlib bin/ux64/liblpsolve55.a + [ y != ] + gcc -m64 -fPIC -DPIC -s -c -I.. -I../shared -I../bfp -I../bfp/bfp_LUSOL -I../bfp/bfp_LUSOL/LUSOL -I../colamd -I. -O3 -DYY_NEVER_INTERACTIVE -DPARSER_LP -DINVERSE_ACTIVE=INVERSE_LUSOL -DRoleIsExternalInvEngine ../lp_MDO.c ../shared/commonlib.c ../shared/mmio.c ../shared/myblas.c ../ini.c ../fortify.c ../colamd/colamd.c ../lp_rlp.c ../lp_crash.c ../bfp/bfp_LUSOL/lp_LUSOL.c ../bfp/bfp_LUSOL/LUSOL/lusol.c ../lp_Hash.c ../lp_lib.c ../lp_wlp.c ../lp_matrix.c ../lp_mipbb.c ../lp_MPS.c ../lp_params.c ../lp_presolve.c ../lp_price.c ../lp_pricePSE.c ../lp_report.c ../lp_scale.c ../lp_simplex.c ../lp_SOS.c ../lp_utils.c ../yacc_read.c + sed s/[^ ]*\///g + sed s/[.]c/.o/g + echo ../lp_MDO.c ../shared/commonlib.c ../shared/mmio.c ../shared/myblas.c ../ini.c ../fortify.c ../colamd/colamd.c ../lp_rlp.c ../lp_crash.c ../bfp/bfp_LUSOL/lp_LUSOL.c ../bfp/bfp_LUSOL/LUSOL/lusol.c ../lp_Hash.c ../lp_lib.c ../lp_wlp.c ../lp_matrix.c ../lp_mipbb.c ../lp_MPS.c ../lp_params.c ../lp_presolve.c ../lp_price.c ../lp_pricePSE.c ../lp_report.c ../lp_scale.c ../lp_simplex.c ../lp_SOS.c ../lp_utils.c ../yacc_read.c + gcc -m64 -fPIC -DPIC -shared -Wl,-Bsymbolic -Wl,-soname,liblpsolve55.so -o bin/ux64/liblpsolve55.so lp_MDO.o commonlib.o mmio.o myblas.o ini.o fortify.o colamd.o lp_rlp.o lp_crash.o lp_LUSOL.o lusol.o lp_Hash.o lp_lib.o lp_wlp.o lp_matrix.o lp_mipbb.o lp_MPS.o lp_params.o lp_presolve.o lp_price.o lp_pricePSE.o lp_report.o lp_scale.o lp_simplex.o lp_SOS.o lp_utils.o yacc_read.o -lc -lm -ldl + mv bin/ux64/liblpsolve55.so ../../../lib + rm colamd.o commonlib.o fortify.o ini.o lp_Hash.o lp_LUSOL.o lp_MDO.o lp_MPS.o lp_SOS.o lp_crash.o lp_lib.o lp_matrix.o lp_mipbb.o lp_params.o lp_presolve.o lp_price.o lp_pricePSE.o lp_report.o lp_rlp.o lp_scale.o lp_simplex.o lp_utils.o lp_wlp.o lusol.o mmio.o myblas.o yacc_read.o make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/ext/lpsolve55' Making lp_solve_5.5_java ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/ext/lp_solve_5.5_java' Making sure lpsolve55 Java wrapper is compatible with linux amd64 Rebuild lpsolve55 Java wrapper for Linux make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/ext/lp_solve_5.5_java' Making src/dd ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/dd' g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_abstr.cc -o ../../obj/dd/dd_abstr.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_test.cc -o ../../obj/dd/dd_test.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_vars.cc -o ../../obj/dd/dd_vars.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_matrix.cc -o ../../obj/dd/dd_matrix.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_export.cc -o ../../obj/dd/dd_export.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_basics.cc -o ../../obj/dd/dd_basics.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_term.cc -o ../../obj/dd/dd_term.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd.cc -o ../../obj/dd/dd.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_info.cc -o ../../obj/dd/dd_info.o -I../../../cudd/include -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dd_cudd.cc -o ../../obj/dd/dd_cudd.o -I../../../cudd/include -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libdd.so ../../obj/dd/dd_abstr.o ../../obj/dd/dd_test.o ../../obj/dd/dd_vars.o ../../obj/dd/dd_matrix.o ../../obj/dd/dd_export.o ../../obj/dd/dd_basics.o ../../obj/dd/dd_term.o ../../obj/dd/dd.o ../../obj/dd/dd_info.o ../../obj/dd/dd_cudd.o -L../../../cudd/lib -lcudd -lutil -lmtr -lst -lepd g++ -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../obj/dd/dd_test ../../obj/dd/dd_test.o -L../../lib -ldd make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/dd' Making src/jdd ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/jdd' (cd ..; javac -encoding UTF8 -sourcepath jdd/../../src -classpath "jdd/../../classes:jdd/../../lib/*" -h jdd/../../include/jni -d jdd/../../classes jdd/SanityJDD.java) Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. (cd ..; javac -encoding UTF8 -sourcepath jdd/../../src -classpath "jdd/../../classes:jdd/../../lib/*" -h jdd/../../include/jni -d jdd/../../classes jdd/JDDTest.java) g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c JDD.cc -o ../../obj/jdd/JDD.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libjdd.so ../../obj/jdd/JDD.o -L../../lib -ldd make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/jdd' Making src/odd ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/odd' g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c ODDUtils.cc -o ../../obj/odd/ODDUtils.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c odd.cc -o ../../obj/odd/odd.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libodd.so ../../obj/odd/ODDUtils.o ../../obj/odd/odd.o -L../../lib -ldd make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/odd' Making src/dv ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/dv' g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c dv.cc -o ../../obj/dv/dv.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c DoubleVector.cc -o ../../obj/dv/DoubleVector.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c iv.cc -o ../../obj/dv/iv.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c IntegerVector.cc -o ../../obj/dv/IntegerVector.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libdv.so ../../obj/dv/dv.o ../../obj/dv/DoubleVector.o ../../obj/dv/iv.o ../../obj/dv/IntegerVector.o -L../../lib -lodd -ldd -lm make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/dv' Making src/prism ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/prism' (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/RangingConstant.java) Note: prism/RangingConstant.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/ModelExpressionTransformation.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/PrismStaTra.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/DefaultModelGenerator.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/PrismTest.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/TestModelGenerator.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/ModelTransformationNested.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/ReactionsText2Prism.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/PrismPythonTalker.java) (cd ..; javac -encoding UTF8 -sourcepath prism/../../src -classpath "prism/../../classes:prism/../../lib/*" -h prism/../../include/jni -d prism/../../classes prism/ModelExpressionTransformationNested.java) g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c prism.cc -o ../../obj/prism/prism.o -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PrismNative.cc -o ../../obj/prism/PrismNative.o -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c NativeIntArray.cc -o ../../obj/prism/NativeIntArray.o -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libprism.so ../../obj/prism/prism.o ../../obj/prism/PrismNative.o ../../obj/prism/NativeIntArray.o -lm make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/prism' Making src/mtbdd ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/mtbdd' g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Power.cc -o ../../obj/mtbdd/PM_Power.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_NondetUntil.cc -o ../../obj/mtbdd/PM_NondetUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PrismMTBDD.cc -o ../../obj/mtbdd/PrismMTBDD.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Reachability.cc -o ../../obj/mtbdd/PM_Reachability.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_NondetReachReward.cc -o ../../obj/mtbdd/PM_NondetReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Prob1A.cc -o ../../obj/mtbdd/PM_Prob1A.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbUntil.cc -o ../../obj/mtbdd/PM_ProbUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_NondetInstReward.cc -o ../../obj/mtbdd/PM_NondetInstReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ExportLabels.cc -o ../../obj/mtbdd/PM_ExportLabels.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbCumulReward.cc -o ../../obj/mtbdd/PM_ProbCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Prob1.cc -o ../../obj/mtbdd/PM_Prob1.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbReachReward.cc -o ../../obj/mtbdd/PM_ProbReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Prob0A.cc -o ../../obj/mtbdd/PM_Prob0A.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_NondetReachRewardInterval.cc -o ../../obj/mtbdd/PM_NondetReachRewardInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_StochCumulReward.cc -o ../../obj/mtbdd/PM_StochCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbUntilInterval.cc -o ../../obj/mtbdd/PM_ProbUntilInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_StochSteadyState.cc -o ../../obj/mtbdd/PM_StochSteadyState.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbBoundedUntil.cc -o ../../obj/mtbdd/PM_ProbBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbReachRewardInterval.cc -o ../../obj/mtbdd/PM_ProbReachRewardInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_StochTransient.cc -o ../../obj/mtbdd/PM_StochTransient.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ExportVector.cc -o ../../obj/mtbdd/PM_ExportVector.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Prob1E.cc -o ../../obj/mtbdd/PM_Prob1E.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Prob0.cc -o ../../obj/mtbdd/PM_Prob0.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_JOR.cc -o ../../obj/mtbdd/PM_JOR.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_PowerInterval.cc -o ../../obj/mtbdd/PM_PowerInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_StochBoundedUntil.cc -o ../../obj/mtbdd/PM_StochBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ExportMatrix.cc -o ../../obj/mtbdd/PM_ExportMatrix.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_NondetUntilInterval.cc -o ../../obj/mtbdd/PM_NondetUntilInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_Prob0E.cc -o ../../obj/mtbdd/PM_Prob0E.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbTransient.cc -o ../../obj/mtbdd/PM_ProbTransient.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_ProbInstReward.cc -o ../../obj/mtbdd/PM_ProbInstReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_JORInterval.cc -o ../../obj/mtbdd/PM_JORInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PM_NondetBoundedUntil.cc -o ../../obj/mtbdd/PM_NondetBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libprismmtbdd.so ../../obj/mtbdd/PM_Power.o ../../obj/mtbdd/PM_NondetUntil.o ../../obj/mtbdd/PrismMTBDD.o ../../obj/mtbdd/PM_Reachability.o ../../obj/mtbdd/PM_NondetReachReward.o ../../obj/mtbdd/PM_Prob1A.o ../../obj/mtbdd/PM_ProbUntil.o ../../obj/mtbdd/PM_NondetInstReward.o ../../obj/mtbdd/PM_ExportLabels.o ../../obj/mtbdd/PM_ProbCumulReward.o ../../obj/mtbdd/PM_Prob1.o ../../obj/mtbdd/PM_ProbReachReward.o ../../obj/mtbdd/PM_Prob0A.o ../../obj/mtbdd/PM_NondetReachRewardInterval.o ../../obj/mtbdd/PM_StochCumulReward.o ../../obj/mtbdd/PM_ProbUntilInterval.o ../../obj/mtbdd/PM_StochSteadyState.o ../../obj/mtbdd/PM_ProbBoundedUntil.o ../../obj/mtbdd/PM_ProbReachRewardInterval.o ../../obj/mtbdd/PM_StochTransient.o ../../obj/mtbdd/PM_ExportVector.o ../../obj/mtbdd/PM_Prob1E.o ../../obj/mtbdd/PM_Prob0.o ../../obj/mtbdd/PM_JOR.o ../../obj/mtbdd/PM_PowerInterval.o ../../obj/mtbdd/PM_StochBoundedUntil.o ../../obj/mtbdd/PM_ExportMatrix.o ../../obj/mtbdd/PM_NondetUntilInterval.o ../../obj/mtbdd/PM_Prob0E.o ../../obj/mtbdd/PM_ProbTransient.o ../../obj/mtbdd/PM_ProbInstReward.o ../../obj/mtbdd/PM_JORInterval.o ../../obj/mtbdd/PM_NondetBoundedUntil.o -L../../lib -lodd -ldd -ldv -lprism -lm make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/mtbdd' Making src/sparse ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/sparse' g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_SORInterval.cc -o ../../obj/sparse/PS_SORInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_JORInterval.cc -o ../../obj/sparse/PS_JORInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_SOR.cc -o ../../obj/sparse/PS_SOR.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetUntil.cc -o ../../obj/sparse/PS_NondetUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbBoundedUntil.cc -o ../../obj/sparse/PS_ProbBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetReachReward.cc -o ../../obj/sparse/PS_NondetReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetMultiReachReward1.cc -o ../../obj/sparse/PS_NondetMultiReachReward1.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbUntil.cc -o ../../obj/sparse/PS_ProbUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbReachRewardInterval.cc -o ../../obj/sparse/PS_ProbReachRewardInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetMultiReach1.cc -o ../../obj/sparse/PS_NondetMultiReach1.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetInstReward.cc -o ../../obj/sparse/PS_NondetInstReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetUntilInterval.cc -o ../../obj/sparse/PS_NondetUntilInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbCumulReward.cc -o ../../obj/sparse/PS_ProbCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbReachReward.cc -o ../../obj/sparse/PS_ProbReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetReachRewardInterval.cc -o ../../obj/sparse/PS_NondetReachRewardInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_StochCumulReward.cc -o ../../obj/sparse/PS_StochCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbUntilInterval.cc -o ../../obj/sparse/PS_ProbUntilInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_StochSteadyState.cc -o ../../obj/sparse/PS_StochSteadyState.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_Power.cc -o ../../obj/sparse/PS_Power.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetCumulReward.cc -o ../../obj/sparse/PS_NondetCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetMultiObjGS.cc -o ../../obj/sparse/PS_NondetMultiObjGS.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetMultiObj.cc -o ../../obj/sparse/PS_NondetMultiObj.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ExportMDP.cc -o ../../obj/sparse/PS_ExportMDP.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c sparse.cc -o ../../obj/sparse/sparse.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetMultiReach.cc -o ../../obj/sparse/PS_NondetMultiReach.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_StochTransient.cc -o ../../obj/sparse/PS_StochTransient.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_JOR.cc -o ../../obj/sparse/PS_JOR.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetMultiReachReward.cc -o ../../obj/sparse/PS_NondetMultiReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_PowerInterval.cc -o ../../obj/sparse/PS_PowerInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_StochBoundedUntil.cc -o ../../obj/sparse/PS_StochBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ExportMatrix.cc -o ../../obj/sparse/PS_ExportMatrix.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbTransient.cc -o ../../obj/sparse/PS_ProbTransient.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PrismSparse.cc -o ../../obj/sparse/PrismSparse.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ProbInstReward.cc -o ../../obj/sparse/PS_ProbInstReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_ExportSubMDP.cc -o ../../obj/sparse/PS_ExportSubMDP.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PS_NondetBoundedUntil.cc -o ../../obj/sparse/PS_NondetBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c sparse_adv.cc -o ../../obj/sparse/sparse_adv.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include -I../../ext/lpsolve55/include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libprismsparse.so ../../obj/sparse/PS_SORInterval.o ../../obj/sparse/PS_NondetMultiObjGS.o ../../obj/sparse/PS_NondetInstReward.o ../../obj/sparse/PS_NondetBoundedUntil.o ../../obj/sparse/PS_ProbCumulReward.o ../../obj/sparse/PS_Power.o ../../obj/sparse/PS_NondetCumulReward.o ../../obj/sparse/PS_ProbReachReward.o ../../obj/sparse/PS_NondetMultiObj.o ../../obj/sparse/PS_ExportMDP.o ../../obj/sparse/sparse.o ../../obj/sparse/PS_StochTransient.o ../../obj/sparse/PS_JOR.o ../../obj/sparse/PS_SOR.o ../../obj/sparse/PS_StochBoundedUntil.o ../../obj/sparse/PS_NondetReachReward.o ../../obj/sparse/PS_ProbTransient.o ../../obj/sparse/PrismSparse.o ../../obj/sparse/PS_ProbInstReward.o ../../obj/sparse/PS_ExportSubMDP.o ../../obj/sparse/sparse_adv.o ../../obj/sparse/PS_NondetMultiReach.o ../../obj/sparse/PS_NondetUntil.o ../../obj/sparse/PS_NondetMultiReachReward1.o ../../obj/sparse/PS_ProbReachRewardInterval.o ../../obj/sparse/PS_NondetUntilInterval.o ../../obj/sparse/PS_StochCumulReward.o ../../obj/sparse/PS_ProbUntilInterval.o ../../obj/sparse/PS_StochSteadyState.o ../../obj/sparse/PS_ProbBoundedUntil.o ../../obj/sparse/PS_NondetMultiReachReward.o ../../obj/sparse/PS_PowerInterval.o ../../obj/sparse/PS_NondetReachRewardInterval.o ../../obj/sparse/PS_ExportMatrix.o ../../obj/sparse/PS_JORInterval.o ../../obj/sparse/PS_ProbUntil.o ../../obj/sparse/PS_NondetMultiReach1.o -L../../lib -lodd -ldd -ldv -lprism -lm -llpsolve55 make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/sparse' Making src/hybrid ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/hybrid' g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_NondetBoundedUntil.cc -o ../../obj/hybrid/PH_NondetBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_NondetUntil.cc -o ../../obj/hybrid/PH_NondetUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_NondetReachReward.cc -o ../../obj/hybrid/PH_NondetReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c hybrid.cc -o ../../obj/hybrid/hybrid.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_PSORInterval.cc -o ../../obj/hybrid/PH_PSORInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_NondetUntilInterval.cc -o ../../obj/hybrid/PH_NondetUntilInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbCumulReward.cc -o ../../obj/hybrid/PH_ProbCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbUntil.cc -o ../../obj/hybrid/PH_ProbUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbReachReward.cc -o ../../obj/hybrid/PH_ProbReachReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_NondetReachRewardInterval.cc -o ../../obj/hybrid/PH_NondetReachRewardInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_StochCumulReward.cc -o ../../obj/hybrid/PH_StochCumulReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbBoundedUntil.cc -o ../../obj/hybrid/PH_ProbBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbUntilInterval.cc -o ../../obj/hybrid/PH_ProbUntilInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_StochSteadyState.cc -o ../../obj/hybrid/PH_StochSteadyState.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_SORInterval.cc -o ../../obj/hybrid/PH_SORInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_Power.cc -o ../../obj/hybrid/PH_Power.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbReachRewardInterval.cc -o ../../obj/hybrid/PH_ProbReachRewardInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_StochTransient.cc -o ../../obj/hybrid/PH_StochTransient.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_JOR.cc -o ../../obj/hybrid/PH_JOR.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_PowerInterval.cc -o ../../obj/hybrid/PH_PowerInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_StochBoundedUntil.cc -o ../../obj/hybrid/PH_StochBoundedUntil.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_SOR.cc -o ../../obj/hybrid/PH_SOR.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbTransient.cc -o ../../obj/hybrid/PH_ProbTransient.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_ProbInstReward.cc -o ../../obj/hybrid/PH_ProbInstReward.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_JORInterval.cc -o ../../obj/hybrid/PH_JORInterval.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PH_PSOR.cc -o ../../obj/hybrid/PH_PSOR.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ --std=c++11 -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -c PrismHybrid.cc -o ../../obj/hybrid/PrismHybrid.o -I../../../cudd/include -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include" -I"/usr/lib/jvm/java-11-openjdk-amd64/bin/../include/linux" -I../../include g++ -shared -m64 -fPIC -DPIC -DHAVE_IEEE_754 -DBSD -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -Wformat -O3 -o ../../lib/libprismhybrid.so ../../obj/hybrid/PH_NondetBoundedUntil.o ../../obj/hybrid/PH_NondetUntil.o ../../obj/hybrid/PH_NondetReachReward.o ../../obj/hybrid/hybrid.o ../../obj/hybrid/PH_PSORInterval.o ../../obj/hybrid/PH_NondetUntilInterval.o ../../obj/hybrid/PH_ProbCumulReward.o ../../obj/hybrid/PH_ProbUntil.o ../../obj/hybrid/PH_ProbReachReward.o ../../obj/hybrid/PH_NondetReachRewardInterval.o ../../obj/hybrid/PH_StochCumulReward.o ../../obj/hybrid/PH_ProbBoundedUntil.o ../../obj/hybrid/PH_ProbUntilInterval.o ../../obj/hybrid/PH_StochSteadyState.o ../../obj/hybrid/PH_SORInterval.o ../../obj/hybrid/PH_Power.o ../../obj/hybrid/PH_ProbReachRewardInterval.o ../../obj/hybrid/PH_StochTransient.o ../../obj/hybrid/PH_JOR.o ../../obj/hybrid/PH_PowerInterval.o ../../obj/hybrid/PH_StochBoundedUntil.o ../../obj/hybrid/PH_SOR.o ../../obj/hybrid/PH_ProbTransient.o ../../obj/hybrid/PH_ProbInstReward.o ../../obj/hybrid/PH_JORInterval.o ../../obj/hybrid/PH_PSOR.o ../../obj/hybrid/PrismHybrid.o -L../../lib -lprismsparse -lodd -ldd -ldv -lprism -lm make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/hybrid' Making src/parser ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/parser' (cd ..; javac -encoding UTF8 -sourcepath parser/../../src -classpath "parser/../../classes:parser/../../lib/*" -h parser/../../include/jni -d parser/../../classes parser/Prism3To4TokenManager.java) (cd ..; javac -encoding UTF8 -sourcepath parser/../../src -classpath "parser/../../classes:parser/../../lib/*" -h parser/../../include/jni -d parser/../../classes parser/Prism3To4.java) (cd ..; javac -encoding UTF8 -sourcepath parser/../../src -classpath "parser/../../classes:parser/../../lib/*" -h parser/../../include/jni -d parser/../../classes parser/type/TypePathInt.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/parser' Making src/settings ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/settings' make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/settings' Making src/userinterface ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/userinterface' (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/GUIGeneralOptions.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/model/computation/SavePRISMModelThread.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/model/computation/SavePEPAModelThread.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/MultipleProperty.java) Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: userinterface/../../src/userinterface/util/PropertyTableModel.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/BooleanProperty.java) Note: userinterface/util/BooleanProperty.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/FontColorProperty.java) Note: userinterface/../../src/userinterface/util/FontChooser.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/ColourProperty.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/SelectionListener.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/DoubleProperty.java) Note: userinterface/util/DoubleProperty.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/ChoiceProperty.java) Note: userinterface/util/ChoiceProperty.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/ExpressionProperty.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/PropertyConstants.java) (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/SelectionModel.java) Note: userinterface/util/SelectionModel.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/util/PropertyTable.java) Note: userinterface/util/PropertyTable.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/simulator/networking/GUISimulatorDistributionDialog.java) Note: userinterface/simulator/networking/GUISimulatorDistributionDialog.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: userinterface/simulator/networking/GUISimulatorDistributionDialog.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. (cd ..; javac -encoding UTF8 -sourcepath userinterface/../../src -classpath "userinterface/../../classes:userinterface/../../lib/*" -h userinterface/../../include/jni -d userinterface/../../classes userinterface/properties/computation/SavePropertiesThread.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/userinterface' Making src/pepa/compiler ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/pepa/compiler' make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/pepa/compiler' Making src/simulator ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/simulator' (cd ..; javac -encoding UTF8 -sourcepath simulator/../../src -classpath "simulator/../../classes:simulator/../../lib/*" -h simulator/../../include/jni -d simulator/../../classes simulator/ChoiceSingleton.java) (cd ..; javac -encoding UTF8 -sourcepath simulator/../../src -classpath "simulator/../../classes:simulator/../../lib/*" -h simulator/../../include/jni -d simulator/../../classes simulator/ChoiceList.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/simulator' Making src/jltl2ba ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/jltl2ba' (cd ..; javac -encoding UTF8 -sourcepath jltl2ba/../../src -classpath "jltl2ba/../../classes:jltl2ba/../../lib/*" -h jltl2ba/../../include/jni -d jltl2ba/../../classes jltl2ba/Jltl2baCmdLine.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/jltl2ba' Making src/jltl2dstar ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/jltl2dstar' (cd ..; javac -encoding UTF8 -sourcepath jltl2dstar/../../src -classpath "jltl2dstar/../../classes:jltl2dstar/../../lib/*" -h jltl2dstar/../../include/jni -d jltl2dstar/../../classes jltl2dstar/Jltl2dstarCmdLine.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/jltl2dstar' Making src/explicit ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/explicit' (cd ..; javac -encoding UTF8 -sourcepath explicit/../../src -classpath "explicit/../../classes:explicit/../../lib/*" -h explicit/../../include/jni -d explicit/../../classes explicit/SCCConsumerBSCCs.java) (cd ..; javac -encoding UTF8 -sourcepath explicit/../../src -classpath "explicit/../../classes:explicit/../../lib/*" -h explicit/../../include/jni -d explicit/../../classes explicit/PrismSTPGAbstractRefine.java) (cd ..; javac -encoding UTF8 -sourcepath explicit/../../src -classpath "explicit/../../classes:explicit/../../lib/*" -h explicit/../../include/jni -d explicit/../../classes explicit/QuantAbstractRefineExample.java) (cd ..; javac -encoding UTF8 -sourcepath explicit/../../src -classpath "explicit/../../classes:explicit/../../lib/*" -h explicit/../../include/jni -d explicit/../../classes explicit/rewards/STPGRewardsSimple.java) (cd ..; javac -encoding UTF8 -sourcepath explicit/../../src -classpath "explicit/../../classes:explicit/../../lib/*" -h explicit/../../include/jni -d explicit/../../classes explicit/rewards/StateRewardsSimple.java) (cd ..; javac -encoding UTF8 -sourcepath explicit/../../src -classpath "explicit/../../classes:explicit/../../lib/*" -h explicit/../../include/jni -d explicit/../../classes explicit/graphviz/ShowStateRewardsDecorator.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/explicit' Making src/pta ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/pta' (cd ..; javac -encoding UTF8 -sourcepath pta/../../src -classpath "pta/../../classes:pta/../../lib/*" -h pta/../../include/jni -d pta/../../classes pta/LocZoneSet.java) (cd ..; javac -encoding UTF8 -sourcepath pta/../../src -classpath "pta/../../classes:pta/../../lib/*" -h pta/../../include/jni -d pta/../../classes pta/DBMListFactory.java) (cd ..; javac -encoding UTF8 -sourcepath pta/../../src -classpath "pta/../../classes:pta/../../lib/*" -h pta/../../include/jni -d pta/../../classes pta/LocZoneSetOld.java) (cd ..; javac -encoding UTF8 -sourcepath pta/../../src -classpath "pta/../../classes:pta/../../lib/*" -h pta/../../include/jni -d pta/../../classes pta/PTAModelCheckerCL.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/pta' Making src/param ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/param' (cd ..; javac -encoding UTF8 -sourcepath param/../../src -classpath "param/../../classes:param/../../lib/*" -h param/../../include/jni -d param/../../classes param/ResultExporter.java) (cd ..; javac -encoding UTF8 -sourcepath param/../../src -classpath "param/../../classes:param/../../lib/*" -h param/../../include/jni -d param/../../classes param/RahdConstraintChecker.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/param' Making src/strat ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/strat' make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/strat' Making src/automata ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/automata' make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/automata' Making src/common ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/common' (cd ..; javac -encoding UTF8 -sourcepath common/../../src -classpath "common/../../classes:common/../../lib/*" -h common/../../include/jni -d common/../../classes common/iterable/SingletonIterable.java) make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/common' Making src/cex ... make[6]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/cex' make[6]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/src/cex' Copying src/bin/prism.linux -> bin/prism Copying src/bin/xprism.linux -> bin/xprism Copying obj/prism/ngprism -> bin/ngprism make[5]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism && /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-build [ 87%] Performing install step for 'prism' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism && rsync -a /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/lib /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism/classes /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/devel/lib/prism cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism/prism && /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-install [100%] Completed 'prism' /usr/bin/cmake -E make_directory /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/prism-complete /usr/bin/cmake -E touch /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/prism/src/prism-stamp/prism-done make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' [100%] Built target prism make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles 0 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' debian/rules override_dh_auto_test make[1]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. echo -- Running tests. Even if one of them fails the build is not canceled. -- Running tests. Even if one of them fails the build is not canceled. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_test || true make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' fakeroot debian/rules binary dh binary -v --buildsystem=cmake dh_testroot -O-v -O--buildsystem=cmake dh_prep -O-v -O--buildsystem=cmake rm -f -- debian/ros-melodic-prism-strands.substvars rm -fr -- debian/.debhelper/generated/ros-melodic-prism-strands/ debian/ros-melodic-prism-strands/ debian/tmp/ dh_installdirs -O-v -O--buildsystem=cmake install -d debian/ros-melodic-prism-strands debian/rules override_dh_auto_install make[1]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_install cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands AM_UPDATE_INFO_DIR=no make[2]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-prism-strands-1.2.5 -B/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make -f CMakeFiles/prism.dir/build.make CMakeFiles/prism.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-prism-strands-1.2.5 /tmp/binarydeb/ros-melodic-prism-strands-1.2.5 /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/prism.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make -f CMakeFiles/prism.dir/build.make CMakeFiles/prism.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/prism.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' [100%] Built target prism make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu/CMakeFiles 0 make -f CMakeFiles/Makefile2 preinstall make[3]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make[3]: Nothing to be done for 'preinstall'. make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' Install the project... /usr/bin/cmake -P cmake_install.cmake -- Install configuration: "None" -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib/pkgconfig/prism_strands.pc -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/share/prism_strands/cmake/prism_strandsConfig.cmake -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/share/prism_strands/cmake/prism_strandsConfig-version.cmake -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/share/prism_strands/package.xml -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism_strands/prism -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBAAnalysis.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVCheckChildrenVertical.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/UnionAcceptanceCalculator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/StateMapperFuzzy.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraTreeWalker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBA2DAResult.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraNBA2DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVCheckFinalSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/RabinSignature$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/StateMapperInterface.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/RabinAcceptance$AcceptancePairIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVSubstractLabeling.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/GraphAlgorithms$SCC_DFS$SCC_DFS_Data.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRAOptimizations$AcceptanceSignature.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Options_LTL2DRA$AutomataType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/GraphAlgorithms$SCC_DFS.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraTree.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVCheckForFinalSucc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler$Tree.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler$Tree_Safra.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRAOptimizations$AcceptanceSignatureComparator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraTreeTemplate.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraTreeNode$SafraTreeNodeIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRAOptimizations.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVPowerset.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Options_Safra.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/UnionNBA2DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/StateMapper.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraNBA2DRA$unprocessed_value.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler$Tree_Union.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Options_LTL2DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/APMonom2APElements.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBA2DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DAUnionAlgorithm.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler$Tree_Streett.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBA_State.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/RabinAcceptance$RabinColor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraTreeNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler$Tree_Start.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/RabinSignature.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$SafraTreeVisitor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Jltl2dstarCmdLine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/RabinAcceptance.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/StateMapperFuzzy$ListValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVReorderChildren.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/UnionState$Result.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBA2DAState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/AcceptanceForState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/Scheduler$Tree_Rabin.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/UnionNBA2DRA$unprocessed_value.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/APMonom.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/UnionState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVRemoveEmpty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVCheckChildrenHorizontal.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVRemoveSubtree.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRAOptimizations$ColoredStateComparator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRAOptimizations$AcceptanceSignatureContainer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/LTL2Rabin.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SCCs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/LTL2DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/StateMapperFuzzy$AbstractedKeyType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DRAOptimizations$Coloring.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/GraphAlgorithms.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/NBA_State$EdgeManager.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DBA2DRA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafrasAlgorithm$STVResetFinalFlag.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/SafraTreeCandidateMatcher.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2dstar/DA_State.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/Type.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeVoid.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeClock.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypePathDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeBool.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypePathInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypePathBool.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeInterval.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/type/TypeArray.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/VarList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParser$JJCalls.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/EvaluateContextSubstate.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/FindAllPropRefs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllUndefinedConstantsRecursively.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ExpandLabels.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllLabels.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/PropertiesSemanticCheck.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ModulesFileSemanticCheckAfterConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllPropRefsRecursively.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ExpandPropRefsAndLabels.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllVars.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ModulesFileSemanticCheck.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllPropRefs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ASTTraverse.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/CheckValid.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/SemanticCheck.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/Simplify.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/Rename.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/FindAllActions.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ExpressionTraverseNonNested.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/EvaluatePartially.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/TypeCheck.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ExpandFormulas.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ToTreeString.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ASTVisitor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/TypeCheck$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ReplaceLabels.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ComputeProbNesting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ASTTraverseModify.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/FindAllVars.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ConvertForJltl2ba.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/GetAllFormulas.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/FindAllFormulas.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/ExpandConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/visitor/FindAllConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/BooleanUtils$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParser$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ParseException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParser.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Prism3To4Constants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParser$ExpressionPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/TokenMgrError.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParserConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/EvaluateContextState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Prism3To4$JJCalls.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Values.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/EvaluateContextValues.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParser$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Prism3To4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/State.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ParserUtils.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Token.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Prism3To4$LookaheadSuccess.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParserTokenManager.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/EvaluateContext.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/SimpleCharStream.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/BooleanUtils.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/VarList$Var.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ExplicitFiles2ModulesFile.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismSyntaxHighlighter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/PrismParser$LookaheadSuccess.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Updates.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RenamedModule.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionFunc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Expression$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Command.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ConstantList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemModule.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RewardStructItem.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Property.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Expression$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/DeclarationInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionConstant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ModulesFile.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionProp.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ForLoop.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionFilter$FilterOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/DeclarationType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemHide.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionBinaryOp.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Expression$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Filter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/DeclarationArray.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionFormula.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RewardStruct.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionQuant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemBrackets.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionLabel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionFilter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemDefn.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionVar.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Module.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionStrategy.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/PropertiesFile.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemFullParallel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/DeclarationClock.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionIdent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/LabelList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionUnaryOp.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/FormulaList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Declaration.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionReward.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionProb.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionSS.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionLiteral.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionForAll.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/DeclarationBool.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemInterleaved.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Update.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemReference.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Coalition.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Expression$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/DeclarationIntUnbounded.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Expression$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/Expression.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionITE.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionTemporal.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ASTElement.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/RelOp$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/ExpressionExists.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemRename.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/ast/SystemParallel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/parser/Prism3To4TokenManager.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/MyBitSet$MyBitSetIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Buchi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/SimpleLTL$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Alternating.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/APSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Buchi$BState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/MyBitSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Buchi$BTrans.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/APElement.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Generalized$GState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Buchi$LTL2BAState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Buchi$BScc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Alternating$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/APSet$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Generalized$GScc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Generalized.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Jltl2baCmdLine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/SimpleLTL.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/LTLFragments.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Alternating$AProd.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/LTLFragments$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/SimpleLTL$LTLType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/APElementIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Generalized$GTrans.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jltl2ba/Alternating$ATrans.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/dv -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/dv/DoubleVector.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/dv/IntegerVector.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/dv/DoubleVector$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/sparse -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/sparse/PrismSparse.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/sparse/NDSparseMatrix.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/odd -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/odd/ODDNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/odd/ODDUtils.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathFullPrefix.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathFullInfo.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/ChoiceList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/GenerateSimulationPath$GenerateAndPlotThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/LoopDetector.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHost$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/FileSystem.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SimulatorNetworkHandler$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHandler$ErrorGobbler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SimulatorResultsFile$SimulatorResult.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SimulatorNetworkHandler$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHost.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/RemoteHandler$StreamGobbler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHandler$PingThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHost$StintThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHost$StintFeedbackThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHandler$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHost$TestThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SimulatorNetworkHandler$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SimulatorNetworkHandler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHandler$PingController.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SSHHandler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/RemoteHandler$ErrorGobbler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/SimulatorResultsFile.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/networking/RemoteHandler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathToGraph.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathToText.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/ModulesFileModelGeneratorSymbolic.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerBoolean.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerBoundedUntilCont.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerRewardCumulCont.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerRewardInstDisc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerRewardReach.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerBoundedUntilDisc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerRewardInstCont.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerNext.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerRewardCumulDisc.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/Sampler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerUntil.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/sampler/SamplerDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/SimulatorEngine$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathDisplayer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/ModulesFileModelGenerator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/GenerateSimulationPath.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathFull$DisplayThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathOnTheFly.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/GenerateSimulationPath$PathType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/Choice.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/GenerateSimulationPath$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/Path.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/ChoiceSingleton.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/TransitionList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/APMCconfidence.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/CIconfidence.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/ACIconfidence.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/CIMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/CIiterations.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/ACIwidth.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/APMCMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/SimulationMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/CIwidth.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/ACIiterations.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/SPRTMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/APMCiterations.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/method/APMCapproximation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathFull$Step.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/ChoiceListFlexi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/Updater.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/RandomNumberGenerator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/SimulatorEngine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/TransitionList$Ref.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/simulator/PathFull.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/mtbdd -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/mtbdd/PrismMTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDDTest.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDDNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/SanityJDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDD$CuddOutOfMemoryException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDDVectorConsumer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDDVars$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/DebugJDD$DebugJDDNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/DebugJDD$DebugJDDNodeLight.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDDVars.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/DebugJDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/jdd/JDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DBMListFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/LocZoneSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/PTAParserTokenManager.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/PTAParserConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/PTAParser$astTransition.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/ParseException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/PTAParser.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/TokenMgrError.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/Token.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/PTAParser$astEdge.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/SimpleCharStream.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/parser/PTAParser$astPTA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTAAbstractRefine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/LocZoneSetOld.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/Zone.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DB.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DBMFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTAModelCheckerCL.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$ComputeClockInformation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTA$TransitionsByActionIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/SymbolicTransition.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/NCZone.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/BackwardsReachabilityGraph.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/ZoneFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$3$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/Constraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DBM.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTAParallel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/LocZone.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/ReachabilityGraph.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/BackwardsReach.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/Edge.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/Modules2PTA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTAModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTAParallel$IndexPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DBMList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTAModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/Transition.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/DigitalClocks$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/PTA$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/ForwardsReach.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/BackwardsReachabilityGraph$Edge.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pta/Modules2PTA$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ECComputer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Result.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SBML2Prism$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismDevNullLog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Modules2MTBDD$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismLangException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Modules2MTBDD$SystemDDs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateValuesMTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/NonProbModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StochModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismNotSupportedException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Operator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismCL.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Reactions2Prism$Parameter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ReactionsText2Prism$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsCollection$TreeNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Pair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismLanguageTranslator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/LTLModelChecker$LTLProduct.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Point.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelExpressionTransformation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismNative.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/DefinedConstant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ReactionsText2Prism$SectionType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/NondetModelTransformationOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelTransformation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Operator$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PermutedLexicographicComparator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismPrintStreamLog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PEPA2Prism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/OptionsIntervalIteration.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/UndefinedConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismPythonTalker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismTest.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SBML2Prism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/NativeIntArray.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Filter$FilterOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/TileList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismNG.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Reactions2Prism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/LTLModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismStaTra.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Filter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateValuesVoid.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismFileLog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputerSCCFind$DecompTask.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Interval.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ReactionsText2Prism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputerXB.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ECComputerDefault.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelGenerator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsCollection$TreeLeaf.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/OptionsIntervalIteration$BoundMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ExplicitFiles2MTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismSettingsListener.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Modules2MTBDD$ComponentDDs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Prism$StrategyExportType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ExplicitModel2MTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/RangingConstant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/MathML2Prism$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismModelListener.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ProgressDisplay.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Modules2MTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismUtils.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/MultiObjModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ProbModelTransformationOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Model.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StochModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/NondetModel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/LTLModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateVector.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Reactions2Prism$Reaction.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/OpsAndBoundsList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelTransformationNested.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelGenerator2MTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Reactions2Prism$Species.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateValuesDV.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelVariablesDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateListMTBDD$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsExporter$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultListener.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/queueElement.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsExporter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateValuesMTBDD$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Prism$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsCollection.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelGeneratorSymbolic.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Tile.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputerSCCFind$SkelForwardResult.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/OpsAndBoundsList$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismSettings.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/MultiObjUtils.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/NondetModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ProbModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ProbModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Prism$ModelSource.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PropertyConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/IntegerBound.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Product.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelExpressionTransformationNested.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Prism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismCL$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismComponent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputerLockstep.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/NondetModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/MDPQuotient$MDPQuotientOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsExporter$ResultsExportFormat.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/PrismLog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/DefaultModelGenerator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/TestModelGenerator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ProbModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateListMTBDD$OutputFormat.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/MDPQuotient.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputerSCCFind.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelInfo.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateValues.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/SCCComputerLockstep$DecompTask.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Version.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ModelType$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/MathML2Prism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/StateListMTBDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/Preprocessor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/ResultsExporter$ResultsExportDestination.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/prism/OpRelOpBound.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/DA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2RabinLibrary.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2NBA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2DA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTSFromDA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2WDBA$BuchiLTS.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2WDBA$Lasso.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2WDBA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/DA$Edge.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2RabinLibrary$OperandInfo.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2RabinLibrary$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTSFromDA$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/DASimplifyAcceptance.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/HOAF2DA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/HOAF2DA$TransitionBasedAcceptanceException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/HOAF2DA$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2WDBA$LassoLTSState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2WDBA$PowersetDA.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/automata/LTL2RabinLibrary$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionValuesIntersections$RegionIntersectionOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModel$3$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunctionFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Optimiser.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunctionFactory$Number.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateEliminator$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Point.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateBoolean.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ConstraintChecker$DecisionEntryKey.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Partition.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagOperator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/CachedFunctionFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/BoxRegionFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/JasFunctionFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Region.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamResult.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ValueComputer$ResultCacheEntry.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/JasFunction.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/CachedFunction.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ValueComputer$PropType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunction.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionsTODO$RegionsByVolumeComparator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunctionFactory$Multiply.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ConstraintChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/MutablePMC.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Lumper.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Scheduler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateEliminator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunctionFactory$Variable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/BigRational.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ValueComputer$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Partition$HashSetSizeComparator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModel$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/FunctionFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/NullLumper.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/CachedFunctionFactory$OpCacheKey.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ResultExporter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Lumper$RewardEntry.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ValueComputer$SchedulerCacheKey.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RahdConstraintChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionIntersection.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ModelBuilder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionValuesIntersections.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunctionFactory$Negate.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateEliminator$EliminationOrder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/DagFunctionFactory$Add.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModel$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ResultExporter$PointComparator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StrongLumper.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Function.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/TransitionList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/SymbolicEngine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionsTODO.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ValueComputer$ResultCacheKey.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ChoiceListFlexi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionFactory.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ConstraintChecker$DecisionEntryValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Lumper$BisimType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/RegionValues.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ValueComputer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/BoxRegion.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamMode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateValues.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/StateEliminator$NewTransition.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/Polynomial.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamRewardStruct.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/TransitionList$Ref.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/ParamModel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/param/WeakLumper.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/SimulationInformation$Method.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/PrismXYSeries.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/AxisSettings$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptions$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GUIImageExportDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GUIImageExportDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/AxisSettings.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/Graph$GraphUpdateTask.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphResultListener.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptions.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GUIImageExportDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$SeriesEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/AxisSettings$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesSettings$GraphSeriesIcon.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptions$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesSettings.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/Graph.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GUIImageExportDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/PrismLogarithmicAxis.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$SeriesEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/DisplaySettings.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesSettingsList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GUIImageExportDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$SeriesEditor$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/AxisSettings$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/AxisSettings$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/SeriesEditorDialog$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/GraphOptionsPanel$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/graph/Graph$SeriesKey.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/CheckBoxList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIOptionsDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIConstantsPicker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboardEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIConstantsPicker$DefineConstantTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUILog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUILog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIWindowLog$SetWindowLogText.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIWindowLog$GUIWindowLogUpdater.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIVisualLogger.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIWindowLog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUILog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIVisualLogModel$AddLogEntry.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIWindowLog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/log/GUIVisualLogModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$RewardListItem.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUITimeDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$16.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimLabelList$InitSimLabel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUITimeDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$PepaView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$PropertyResultsTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$NetworkNodeRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$SummaryContext.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$12.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$SummaryEditorKit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$15.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$14.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$ProgressBarRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUISimulatorDistributionDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$13.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/networking/GUINetworkEditor$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorUpdatesTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$20.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$18.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$13.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$TimeValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$17.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$UpdateTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$21.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$12.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$23.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorPathTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimLabelList$DeadlockSimLabel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$ShowChoice.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$VariableValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$VariableListModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimLabelList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$15.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$24.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker$Value.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorUpdatesTable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$SimulateChoice.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$ActionValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorPathTable$LoopIndicatorRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimPathFormulaeList$SimPathFormula.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUITimeDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimPathFormulaeList$BottomBorder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorPathTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimPathFormulaeList$SimPathFormulaRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorUpdatesTable$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUITimeDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$RewardListModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIPathPlotDialog$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorUpdatesTable$UpdateTableRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimPathPlotThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorPathTable$PathChangeCellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorUpdatesTable$UpdateHeaderListModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimLabelList$SimLabelRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorPathTable$PathChangeTableRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$19.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimLabelList$SimLabel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimLabelList$BottomBorder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorPathTable$LoopIndicatorListModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$14.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$Variable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulatorUpdatesTable$UpdateHeaderRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$RewardStructureColumn.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIViewDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUITimeDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimulator$22.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker$DefineValuesTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUIInitialStatePicker$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$RewardStructure.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/GUISimPathFormulaeList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/simulator/SimulationView$RewardStructureValue.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/SimulationInformation$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIConstantsPicker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$DefineValuesTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/CheckBoxList$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrismSplash$SplashWindow.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/SimulationInformation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIConstantsPicker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIComputationThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIOptionsDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$GreyableJTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIOptionsDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/CheckBoxList$CellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIOptionsDialog$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$GreyableJTable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrismSplash.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIFileMenu.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIConstantsPicker$Constant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/SimulationInformation$Unknown.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIGeneralOptions.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIConstantsPicker$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModelTypeEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$28.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/PrismEditorKit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$13.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$DeclarationNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelHandler$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$14.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModuleEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditorGutter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ConstantCollectionNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$26.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIModelEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$PrismTreeNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIModelEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$32.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITransientTime$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelHandler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModelTypeNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$GlobalNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelHandler$WaitParseThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$BoolConstantNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModelRootNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/PepaContext.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$14.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ExpressionEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$BooleanVariable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ExportBuiltModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeSteadyStateThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPRISMModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPEPAModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePEPAModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/BuildModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ExportBuiltModelThread$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeTransientThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePRISMModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPEPAModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ExportBuiltModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeTransientThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeSteadyStateThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ParseModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeTransientThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPEPAModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/BuildModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeTransientThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePRISMModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ParseModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPRISMModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePRISMModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPRISMModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePEPAModelThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ParseModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/BuildModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePEPAModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePRISMModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ParseModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeSteadyStateThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPRISMModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/SavePEPAModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ComputeSteadyStateThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ExportBuiltModelThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/ExportBuiltModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/LoadPEPAModelThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/computation/BuildModelThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/PepaView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModuleEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModuleNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$19.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/PepaEditorKit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ConstantNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$23.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$Variable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$17.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$25.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$12.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$PrismNodeRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/PrismView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$DeclarationCollectionNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModelTreeCellEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$IntegerConstantNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/pepaModel -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/pepaModel/GUIPepaModelEditor$PepaEditorKit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/pepaModel/GUIPepaModelEditor$PepaView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/pepaModel/GUIPepaModelEditor$PepaContext.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/pepaModel/GUIPepaModelEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$StateVarNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$DoubleConstantNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$29.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITransientTime.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$33.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$16.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$13.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$VarNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModelTypeEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$15.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$27.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/Style.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$16.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$30.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$22.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$24.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$IconThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$DeclarationEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$34.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$GlobalBoolNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$20.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelHandler$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$35.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$12.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$18.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$18.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$15.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ValueNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITransientTime$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/PrismContext.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ExpressionEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ExpressionNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$17.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUITextModelEditor$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$StringNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$31.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$IntegerVariable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$ModuleCollectionNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$21.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModel$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$DeclarationEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/model/GUIMultiModelTree$BoolNode.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$Value.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUITaskBar.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetwork.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIOptionsDialog$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPrism$SplashScreenCloser.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUINetworkOptions$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIComputationEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyTable$PropertyCellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTableHeader$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTableHeader$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PresentationMetalTheme.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/MultipleProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTableColumnModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/SelectionEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/FontColorProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/SingleProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIUndoManager.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/FontChooser$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUILogEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyOwner.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIEventListener.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIExitEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIEventHandler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/ChoiceProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/SelectionListener.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/ExpressionProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/BooleanProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIUndoManagerEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/FontChooser.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/ColourProperty$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTableHeader.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/DoubleProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyConstants.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIGroupedTableHeader$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/FontColorPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/GUIEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/FontColorProperty$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/SelectionModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/ColourProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyTable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/util/PropertyTable$PropertyCellEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUISimulationPicker$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIFileMenu$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIClipboard$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyEditor$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIResultsTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$23.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyResultDialog$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$22.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/ConstantLine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropConstantList$TheCellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIResultsTable$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$19.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentPicker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$12.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$20.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GraphConstantPickerList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$GUIClipboardProperties.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIConstant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GraphConstantLine$BottomBorder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentTable$ExperimentTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ExportResultsThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SimulateModelCheckThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ModelCheckThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ExportResultsThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SavePropertiesThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ModelCheckThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/LoadPropertiesThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/LoadPropertiesThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ModelCheckThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/LoadPropertiesThread$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SavePropertiesThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SavePropertiesThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ModelCheckThread$IconThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ExportResultsThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/LoadPropertiesThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SimulateModelCheckThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SavePropertiesThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SimulateModelCheckThread$IconThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/ExportResultsThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/LoadPropertiesThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/computation/SimulateModelCheckThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$9.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertiesEvent.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropLabelList$TheCellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertiesList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/ConstantHeader.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentTable$ProgressBarRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertiesList$BottomBorder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$15.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIResultsTable$ResultsTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentPicker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropLabelList$PropLabelModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentPicker$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropConstantList$PropConstantModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperiment$ExperimentThread.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/ConstantLine$BottomBorder.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GraphConstantHeader.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$14.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$17.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyEditor$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyResultDialog.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/ConstantLine$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperiment.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$21.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIProperty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/ConstantPickerList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$12.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropLabelList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/ConstantLine$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GraphConstantLine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperiment$ExperimentThread$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$26.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentPicker$Rememberance.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GraphConstantLine$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperiment$ExperimentThread$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyEditor$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIResultsTable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUILabel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperimentPicker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropConstantList.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperiment$ExperimentThread$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$16.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphPicker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyEditor$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$25.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIExperiment$ExperimentThread$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$11.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$13.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$27.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertiesList$PictureCellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GraphConstantLine$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIGraphHandler$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIPropertyResultDialog$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$18.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$24.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/properties/GUIMultiProperties$10.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/GUIPlugin.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/userinterface/OptionsPanel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/strat -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/strat/MDStrategy.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/strat/Strategy$Choice.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/strat/Strategy.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/strat/MDStrategyArray.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/strat/MDStrategyIV.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/cex -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/cex/CexPathStates.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/cex/CexPathAsBDDs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/IntegerRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingDisplay.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/BooleanRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingTable$SettingTableModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/Setting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingTable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/TableResizer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/BooleanConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/NumericConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/IntegerSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ChoiceSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontChooser$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ColorRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SingleLineStringEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FileRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FileEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ChoiceRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/MultipleLineStringSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/MultipleLineStringRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/DoubleSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/DoubleRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/BooleanSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ChoiceEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontColorRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/LongEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingException.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingOwner.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingTable$SettingCellRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontColorEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/LongSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/DoubleEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SingleLineStringSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontChooser.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/IntegerEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/MultipleLineStringEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/StringConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontColorConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ColorConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingTable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontColorSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingTable$SettingCellEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FontColorPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/DefaultSettingOwner.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/RangeConstraint.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SettingEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ColorSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/SingleLineStringRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/BooleanEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FileSelector.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FileSetting.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/LongRenderer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/FileSetting$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/settings/ColorEditor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pepa -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pepa/compiler -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pepa/compiler/InternalError.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/pepa/compiler/Main.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGenRabinDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceReach.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceStreett$StreettPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceOmega.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceOmegaDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGenRabinDD$GenRabinPairDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceStreettDD$StreettPairDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceOmega$LiftBitSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceStreett.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGeneric$ElementType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGenericDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceBuchi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceRabin$RabinPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGeneric.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceRabinDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceBuchiDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceReachDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceRabin.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGeneric$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceStreettDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGenRabin$GenRabinPair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGenericDD$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceGenRabin.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/acceptance/AcceptanceRabinDD$RabinPairDD.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ECComputer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DijkstraSweepMPI.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SuccessorsIterator$ChainedSuccessorsIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/NonProbModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMC$TransitionToDoubleFunction.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MinMax.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/PredecessorRelation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTLModelChecker$LTLProduct.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker$ValIterDir.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/CTMCModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCFromMDPMemorylessAdversary.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IncomingChoiceRelation$Choice.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ModelTransformation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefine$RefineTermCrit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodJacobi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTS.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/CTMCSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodJacobi$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/Decoration$LabelType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/ShowStateRewardsDecorator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/ShowRewardDecorator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/Decoration.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/ShowStatesDecorator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/MarkStateSetDecorator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/graphviz/Decorator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$7.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ModelCheckerResult.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefine$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/BasicModelTransformation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMC.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ZeroRewardECQuotient$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodJacobi$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/FastAdaptiveUniformisation$AnalysisType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTLModelChecker$1ECandPairs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IncomingChoiceRelation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefineExample$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DijkstraSweepMPI$ChoiceValues.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCComputer$SCCMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SuccessorsIterator$SuccessorsIteratorFromIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTLModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPExplicit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/NondetModelSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDP$1Jacobi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/Bisimulation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/Bisimulation$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ECComputerDefault.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCExplicit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/FastAdaptiveUniformisation$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMC$TransitionConsumer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ModelSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/StateModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCComputerTarjan.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/FastAdaptiveUniformisation$StateProp.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/StateValues$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ModelExplicit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/STPGModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$TwoVectorIteration.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDP.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/CTMDPSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCInfo.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker$SolnMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCUniformisedSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCComputer$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker$TermCrit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefineExample.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SubNondetModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCComputerTarjan$Node.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefine$PropertyType.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/FastAdaptiveUniformisationModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/Distribution.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCConsumerStore.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefine$RefineStratHow.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/Model.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SuccessorsIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/STPGAbstrSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$6.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefine$RefineStratWhere.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker$MDPSolnMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$8.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCInfo$1$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDP$2Jacobi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/FastAdaptiveUniformisation.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/StateRewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/STPGRewardsSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/StateRewardsSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/ConstructRewards$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/MCRewardsFromMDPRewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/MDPRewardsSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/STPGRewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/MDPRewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/StateRewardsConstant.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/MCRewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/Rewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/ConstructRewards.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/rewards/StateRewardsArray.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCSparse.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IndexedSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ZeroRewardECQuotient.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$SingleVectorIterationIntervalIter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/NondetModel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/FoxGlynn.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTLModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPGeneric.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPDroppedChoicesCached$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/DTMCView$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPDroppedAllChoices.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/EquivalenceRelationInteger.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/DTMCView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/DTMCAlteredDistributions.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/DTMCAlteredDistributions$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/ModelView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPDroppedChoicesCached.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPEquiv$StateChoicePair.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPAdditionalChoices.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPView.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/DTMCView$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPEquiv.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPFromDTMC.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPView$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/EquivalenceRelationInteger$KeepSingletons.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPAdditionalChoices$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/modelviews/MDPEquiv$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCComputer$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/Utils.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ExportIterations.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDP$1Sum.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCConsumerBSCCs.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTLModelChecker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$5.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDP$TransitionToDoubleFunction.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCConsumerBitSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker$LinEqMethod.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCEmbeddedSimple$1$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/PrismSTPGAbstractRefine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodJacobi$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTSExplicit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodPower$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ConstructModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/STPGModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCModelChecker$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/BirthProcess.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$IterationPostProcessor.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCExplicit$AddDefaultActionToTransitionsIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCEmbeddedSimple$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ExplicitFiles2Model.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMC$1Jacobi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DijkstraSweepMPI$QueueEntry.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ModelCheckerPartialSatResult.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/CTMC.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ConstructModel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCFromMDPAndMDStrategy.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/PrismSTPGAbstractRefine$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/STPG.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SuccessorsIterator$SuccessorsIteratorEmpty.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCComputer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ExplicitFiles2Model$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/Product.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$IterationIntervalIter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/CTMDPModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$IterationValIter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/STPGExplicit.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/CTMDP.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/NondetModel.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/STPGAbstrSimple$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTSNBAProduct$ProductState.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDP$TransitionConsumer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$IterationBasic.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/LTSNBAProduct.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCEmbeddedSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodJacobi$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/StateStorage.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPSparse$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$SingleVectorIterationValIter.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/ProbModelChecker$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/StateModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCSparse$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCModelChecker.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SuccessorsIterator$SuccessorsIteratorFromOfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/StateValues.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DistributionSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCConsumer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCInfo$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethodGS$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/QuantAbstractRefine.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/IterationMethod$SingletonSCCSolver.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SCCInfo$1$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPSimple.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMC$1Sum.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/StateModelChecker$CheckMaximalPropositionalFormulas.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMCSparse$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPSparse.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/DTMC$2Jacobi.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/MDPSparse$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/explicit/SubNondetModel$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/PeriodicTimer.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IterableBitSet$SetBitsReversedIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IterableStateSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IterableBitSet$SetBitsIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IteratorTools.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IntSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IntSet$IntSetFromBitSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/SafeCast.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IterableBitSet$ClearBitsReversedIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IterableBitSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/StackTraceHelper.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/Timeout.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/functions -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/functions/primitive -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/functions/primitive/PairPredicateInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IterableBitSet$ClearBitsIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/StopWatch.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$From.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromDoubleToInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterable$OfDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$ToLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterator$Of.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$OfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterable$OfDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromIntToLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromLongToDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromDoubleToDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterator$OfDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$4.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/IterableInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromIntToDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterator$OfDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterator$OfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterable$OfLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$ToDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/IterableDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterator$OfLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterable$OfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterator$Of.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterator.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromDoubleToLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$ToInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterator$OfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterable$Of.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterator$OfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$OfDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromIntToInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$Of.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterator$Of.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$3.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/IterableLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromLongToInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterable$OfLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterator$OfDouble.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterator$OfLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromLongToLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/RangeIntIterable$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/EmptyIterator$OfLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/MappingIterator$FromLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$2.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/RangeIntIterable.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterable$Of.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/SingletonIterable$OfInt.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/iterable/FilteringIterable$OfLong.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IntSet$SingletonIntSet.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/common/IntSet$SingletonIntSet$1.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/hybrid -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/classes/hybrid/PrismHybrid.class -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/jcommon.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libprismhybrid.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/nailgun-server.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libodd.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/lpsolve55j.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/jas.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/liblpsolve55j.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/epsgraphics.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/colt.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/jfreechart.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libprism.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/README.md -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libprismmtbdd.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libjdd.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/liblpsolve55.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libprismsparse.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libdv.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/log4j.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/jhoafparser.jar -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/libdd.so -- Installing: /tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands/opt/ros/melodic/lib//prism/lib/pepa.zip make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' dh_install -O-v -O--buildsystem=cmake install -d debian/.debhelper/generated/ros-melodic-prism-strands dh_installdocs -O-v -O--buildsystem=cmake install -d debian/ros-melodic-prism-strands/usr/share/doc/ros-melodic-prism-strands dh_installchangelogs -O-v -O--buildsystem=cmake install -p -m0644 debian/changelog debian/ros-melodic-prism-strands/usr/share/doc/ros-melodic-prism-strands/changelog.Debian dh_installexamples -O-v -O--buildsystem=cmake dh_installman -O-v -O--buildsystem=cmake dh_installcatalogs -O-v -O--buildsystem=cmake dh_installcron -O-v -O--buildsystem=cmake dh_installdebconf -O-v -O--buildsystem=cmake install -d debian/ros-melodic-prism-strands/DEBIAN dh_installemacsen -O-v -O--buildsystem=cmake dh_installifupdown -O-v -O--buildsystem=cmake dh_installinfo -O-v -O--buildsystem=cmake dh_installinit -O-v -O--buildsystem=cmake dh_installmenu -O-v -O--buildsystem=cmake dh_installmime -O-v -O--buildsystem=cmake dh_installmodules -O-v -O--buildsystem=cmake dh_installlogcheck -O-v -O--buildsystem=cmake dh_installlogrotate -O-v -O--buildsystem=cmake dh_installpam -O-v -O--buildsystem=cmake dh_installppp -O-v -O--buildsystem=cmake dh_installudev -O-v -O--buildsystem=cmake dh_installgsettings -O-v -O--buildsystem=cmake dh_bugfiles -O-v -O--buildsystem=cmake dh_ucf -O-v -O--buildsystem=cmake dh_lintian -O-v -O--buildsystem=cmake dh_gconf -O-v -O--buildsystem=cmake dh_icons -O-v -O--buildsystem=cmake dh_perl -O-v -O--buildsystem=cmake dh_usrlocal -O-v -O--buildsystem=cmake dh_link -O-v -O--buildsystem=cmake dh_installwm -O-v -O--buildsystem=cmake dh_installxfonts -O-v -O--buildsystem=cmake dh_strip_nondeterminism -O-v -O--buildsystem=cmake Using 1581602907 as canonical time Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/jcommon.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/nailgun-server.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/lpsolve55j.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/jas.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/epsgraphics.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/colt.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/jfreechart.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/log4j.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/jhoafparser.jar using File::StripNondeterminism::handlers::jar Normalizing debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/pepa.zip using File::StripNondeterminism::handlers::zip dh_compress -O-v -O--buildsystem=cmake cd debian/ros-melodic-prism-strands chmod a-x usr/share/doc/ros-melodic-prism-strands/changelog.Debian gzip -9nf usr/share/doc/ros-melodic-prism-strands/changelog.Debian cd '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' dh_fixperms -O-v -O--buildsystem=cmake find debian/ros-melodic-prism-strands -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 find debian/ros-melodic-prism-strands ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s find debian/ros-melodic-prism-strands/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-prism-strands/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-melodic-prism-strands/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 find debian/ros-melodic-prism-strands -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.scss' -o -name '*.sass' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0644 dh_missing -O-v -O--buildsystem=cmake dh_strip -O-v -O--buildsystem=cmake install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/a4 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/a4/a0f002fefa272bfceb1f82f99c9b2dd2e942c2.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/a4/a0f002fefa272bfceb1f82f99c9b2dd2e942c2.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/a4/a0f002fefa272bfceb1f82f99c9b2dd2e942c2.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/a4/a0f002fefa272bfceb1f82f99c9b2dd2e942c2.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/21 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libodd.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/21/1d09d136090199b5eba8d6fc98cbbdb9e24337.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/21/1d09d136090199b5eba8d6fc98cbbdb9e24337.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/21/1d09d136090199b5eba8d6fc98cbbdb9e24337.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libodd.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/21/1d09d136090199b5eba8d6fc98cbbdb9e24337.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libodd.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/40 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55j.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/40/3cf0a179f99877f8779d66ef8aad4a08f1f0a1.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/40/3cf0a179f99877f8779d66ef8aad4a08f1f0a1.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/40/3cf0a179f99877f8779d66ef8aad4a08f1f0a1.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55j.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/40/3cf0a179f99877f8779d66ef8aad4a08f1f0a1.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55j.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/9d objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprism.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/9d/7efafcdadab328452adc0e42c05c5d7b3a0d28.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/9d/7efafcdadab328452adc0e42c05c5d7b3a0d28.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/9d/7efafcdadab328452adc0e42c05c5d7b3a0d28.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprism.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/9d/7efafcdadab328452adc0e42c05c5d7b3a0d28.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprism.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/d2 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/d2/18df0c663e71e60b924c43fc0a7326a99e8c3b.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/d2/18df0c663e71e60b924c43fc0a7326a99e8c3b.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/d2/18df0c663e71e60b924c43fc0a7326a99e8c3b.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/d2/18df0c663e71e60b924c43fc0a7326a99e8c3b.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/70 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libjdd.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/70/969beef012bb3fed5c2c8ff1f97423c67aeab3.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/70/969beef012bb3fed5c2c8ff1f97423c67aeab3.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/70/969beef012bb3fed5c2c8ff1f97423c67aeab3.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libjdd.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/70/969beef012bb3fed5c2c8ff1f97423c67aeab3.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libjdd.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/7a objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/7a/a4021ed7a3e41413e865f4f77af43912bf39f0.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/7a/a4021ed7a3e41413e865f4f77af43912bf39f0.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/7a/a4021ed7a3e41413e865f4f77af43912bf39f0.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/7a/a4021ed7a3e41413e865f4f77af43912bf39f0.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/87 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/87/328a30b153e1b9f507f3c1d6c14f9200677bfe.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/87/328a30b153e1b9f507f3c1d6c14f9200677bfe.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/87/328a30b153e1b9f507f3c1d6c14f9200677bfe.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/87/328a30b153e1b9f507f3c1d6c14f9200677bfe.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/c5 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdv.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/c5/50bbbba56898047e997ec9ebe906179672c137.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/c5/50bbbba56898047e997ec9ebe906179672c137.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/c5/50bbbba56898047e997ec9ebe906179672c137.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdv.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/c5/50bbbba56898047e997ec9ebe906179672c137.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdv.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/6e objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdd.so debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/6e/87621c2eed8fde30aad948cc37eeab89aeffc4.debug chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/6e/87621c2eed8fde30aad948cc37eeab89aeffc4.debug chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/6e/87621c2eed8fde30aad948cc37eeab89aeffc4.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdd.so objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/lib/debug/.build-id/6e/87621c2eed8fde30aad948cc37eeab89aeffc4.debug debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdd.so install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/share/doc ln -s ros-melodic-prism-strands debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/usr/share/doc/ros-melodic-prism-strands-dbgsym dh_makeshlibs -O-v -O--buildsystem=cmake rm -f debian/ros-melodic-prism-strands/DEBIAN/shlibs debian/rules override_dh_shlibdeps make[1]: Entering directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_shlibdeps -l/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands//opt/ros/melodic/lib/ dpkg-shlibdeps -Tdebian/ros-melodic-prism-strands.substvars -l/tmp/binarydeb/ros-melodic-prism-strands-1.2.5/debian/ros-melodic-prism-strands//opt/ros/melodic/lib/ debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libodd.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55j.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprism.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libjdd.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdv.so debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdd.so dpkg-shlibdeps: warning: cannot find library libodd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdv.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libprism.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library liblpsolve55.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismsparse.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdv.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libprism.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismmtbdd.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libjdd.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libdv.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libodd.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library liblpsolve55.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/liblpsolve55j.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libprismsparse.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdd.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libdv.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') dpkg-shlibdeps: warning: cannot find library libprism.so needed by debian/ros-melodic-prism-strands/opt/ros/melodic/lib/prism/lib/libprismhybrid.so (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '') make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-prism-strands-1.2.5' dh_installdeb -O-v -O--buildsystem=cmake dh_gencontrol -O-v -O--buildsystem=cmake echo misc:Depends= >> debian/ros-melodic-prism-strands.substvars echo misc:Pre-Depends= >> debian/ros-melodic-prism-strands.substvars install -d debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/DEBIAN dpkg-gencontrol -pros-melodic-prism-strands -ldebian/changelog -Tdebian/ros-melodic-prism-strands.substvars -Pdebian/.debhelper/ros-melodic-prism-strands/dbgsym-root -UPre-Depends -URecommends -USuggests -UEnhances -UProvides -UEssential -UConflicts -DPriority=optional -UHomepage -UImportant -DAuto-Built-Package=debug-symbols -DPackage=ros-melodic-prism-strands-dbgsym "-DDepends=ros-melodic-prism-strands (= \${binary:Version})" "-DDescription=debug symbols for ros-melodic-prism-strands" "-DBuild-Ids=211d09d136090199b5eba8d6fc98cbbdb9e24337 403cf0a179f99877f8779d66ef8aad4a08f1f0a1 6e87621c2eed8fde30aad948cc37eeab89aeffc4 70969beef012bb3fed5c2c8ff1f97423c67aeab3 7aa4021ed7a3e41413e865f4f77af43912bf39f0 87328a30b153e1b9f507f3c1d6c14f9200677bfe 9d7efafcdadab328452adc0e42c05c5d7b3a0d28 a4a0f002fefa272bfceb1f82f99c9b2dd2e942c2 c550bbbba56898047e997ec9ebe906179672c137 d218df0c663e71e60b924c43fc0a7326a99e8c3b" -DSection=debug -DPackage-Type=ddeb -UMulti-Arch -UReplaces -UBreaks chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/DEBIAN/control chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/DEBIAN/control dpkg-gencontrol -pros-melodic-prism-strands -ldebian/changelog -Tdebian/ros-melodic-prism-strands.substvars -Pdebian/ros-melodic-prism-strands -UMulti-Arch chmod 0644 -- debian/ros-melodic-prism-strands/DEBIAN/control chown 0:0 -- debian/ros-melodic-prism-strands/DEBIAN/control dh_md5sums -O-v -O--buildsystem=cmake (cd debian/ros-melodic-prism-strands >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null chmod 0644 -- debian/ros-melodic-prism-strands/DEBIAN/md5sums chown 0:0 -- debian/ros-melodic-prism-strands/DEBIAN/md5sums (cd debian/.debhelper/ros-melodic-prism-strands/dbgsym-root >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null chmod 0644 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/DEBIAN/md5sums chown 0:0 -- debian/.debhelper/ros-melodic-prism-strands/dbgsym-root/DEBIAN/md5sums dh_builddeb -O-v -O--buildsystem=cmake dpkg-deb --build debian/ros-melodic-prism-strands .. dpkg-deb: building package 'ros-melodic-prism-strands' in '../ros-melodic-prism-strands_1.2.5-1bionic.20200213.140826_amd64.deb'. install -d debian/.debhelper/scratch-space/build-ros-melodic-prism-strands dpkg-deb --build debian/.debhelper/ros-melodic-prism-strands/dbgsym-root debian/.debhelper/scratch-space/build-ros-melodic-prism-strands dpkg-deb: building package 'ros-melodic-prism-strands-dbgsym' in 'debian/.debhelper/scratch-space/build-ros-melodic-prism-strands/ros-melodic-prism-strands-dbgsym_1.2.5-1bionic.20200213.140826_amd64.deb'. Renaming ros-melodic-prism-strands-dbgsym_1.2.5-1bionic.20200213.140826_amd64.deb to ros-melodic-prism-strands-dbgsym_1.2.5-1bionic.20200213.140826_amd64.ddeb mv debian/.debhelper/scratch-space/build-ros-melodic-prism-strands/ros-melodic-prism-strands-dbgsym_1.2.5-1bionic.20200213.140826_amd64.deb ../ros-melodic-prism-strands-dbgsym_1.2.5-1bionic.20200213.140826_amd64.ddeb dpkg-genbuildinfo --build=binary dpkg-genchanges --build=binary >../ros-melodic-prism-strands_1.2.5-1bionic.20200213.140826_amd64.changes dpkg-genchanges: info: binary-only upload (no source code included) dpkg-source --after-build ros-melodic-prism-strands-1.2.5 dpkg-source: info: using options from ros-melodic-prism-strands-1.2.5/debian/source/options: --auto-commit dpkg-buildpackage: info: binary-only upload (no source included) I: Successfully built in /tmp/binarydeb/ros-melodic-prism-strands-1.2.5 # END SUBSECTION + echo # END SECTION # END SECTION [Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson8456463133176755314.sh + [ false = false ] + echo # BEGIN SECTION: Clean up to save disk space on agents # BEGIN SECTION: Clean up to save disk space on agents + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__prism_strands__ubuntu_bionic_amd64__binary/binarydeb + rm -fr binarydeb/ros-melodic-prism-strands-1.2.5/CHANGELOG.rst binarydeb/ros-melodic-prism-strands-1.2.5/CMakeLists.txt binarydeb/ros-melodic-prism-strands-1.2.5/debian binarydeb/ros-melodic-prism-strands-1.2.5/obj-x86_64-linux-gnu binarydeb/ros-melodic-prism-strands-1.2.5/package.xml binarydeb/ros-melodic-prism-strands-1.2.5/scripts + echo # END SECTION # END SECTION SSH: Connecting from host [lcas-buildfarm-slave-3] SSH: Connecting with configuration [repo] ... SSH: Disconnecting configuration [repo] ... SSH: Transferred 3 file(s) Build step 'Send files or execute commands over SSH' changed build result to SUCCESS Waiting for the completion of Mrel_import-package Mrel_import-package #301 completed. Result was SUCCESS $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 26469 killed; [ssh-agent] Stopped. [description-setter] Description set: 1.2.5-1bionic.20200213.140826 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 Triggering a new build of Mbin_uB64__mdp_plan_exec__ubuntu_bionic_amd64__binary Finished: SUCCESS