SuccessConsole Output

Skipping 53 KB.. Full Log
ys.exit(main())" > /tmp/wrapper_scripts/apt.py
10:34:09  ---> Using cache
10:34:09  ---> d9ed401deed8
10:34:09 Step 20/28 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n    max_tries = 10\n    known_error_strings = [\n        'Connection timed out',\n    ]\n\n    command = argv[0]\n    if command == 'clone':\n        rc, _, _ = call_git_repeatedly(\n            argv, known_error_strings, max_tries)\n        return rc\n    else:\n        assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n    command = argv[0]\n    for i in range(1, max_tries + 1):\n        if i > 1:\n            sleep_time = 5 + 2 * i\n            print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n                  (command, i, max_tries, sleep_time))\n            sleep(sleep_time)\n        rc, known_error_conditions = call_git(argv, known_error_strings)\n        if rc == 0 or not known_error_conditions:\n            break\n        print('')\n        print('Invocation failed due to the following known error conditions: '\n              ', '.join(known_error_conditions))\n        print('')\n        # retry in case of failure with known error condition\n    return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n    known_error_conditions = []\n\n    cmd = ['git'] + argv\n    print(\"Invoking '%s'\" % ' '.join(cmd))\n    proc = subprocess.Popen(\n        cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n    while True:\n        line = proc.stdout.readline()\n        if not line:\n            break\n        line = line.decode()\n        sys.stdout.write(line)\n        for known_error_string in known_error_strings:\n            if known_error_string in line:\n                if known_error_string not in known_error_conditions:\n                    known_error_conditions.append(known_error_string)\n    proc.wait()\n    rc = proc.returncode\n    return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n    sys.exit(main())" > /tmp/wrapper_scripts/git.py
10:34:09  ---> Using cache
10:34:09  ---> ea75fa8b028d
10:34:09 Step 21/28 : RUN echo "2021-10-17 (+0000)"
10:34:09  ---> Using cache
10:34:09  ---> b58f4d39077f
10:34:09 Step 22/28 : 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
10:34:09  ---> Using cache
10:34:09  ---> 162b796e6391
10:34:09 Step 23/28 : 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 openssl
10:34:09  ---> Using cache
10:34:09  ---> a1242e6ae237
10:34:09 Step 24/28 : RUN echo "2021-10-17 09:34:07 +0000"
10:34:10  ---> Running in f43bdcb78251
10:34:10 2021-10-17 09:34:07 +0000
10:34:10  ---> 6f8a44711eb9
10:34:10 Removing intermediate container f43bdcb78251
10:34:10 Step 25/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update
10:34:11  ---> Running in c83de12ca86d
10:34:12 Invoking 'apt-get update'
10:34:13 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,829 B]
10:34:13 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
10:34:13 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
10:34:13 Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
10:34:13 Get:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
10:34:13 Get:6 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
10:34:13 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease
10:34:13 Get:8 http://10.210.9.154/ubuntu/building bionic/main Sources [176 kB]
10:34:13 Get:9 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [223 kB]
10:34:14 Fetched 743 kB in 2s (433 kB/s)
10:34:17 Reading package lists...
10:34:18  ---> 72abf3a42f49
10:34:18 Removing intermediate container c83de12ca86d
10:34:18 Step 26/28 : USER buildfarm
10:34:18  ---> Running in ed961ea24358
10:34:18  ---> 615379dc4dab
10:34:18 Removing intermediate container ed961ea24358
10:34:18 Step 27/28 : ENTRYPOINT sh -c
10:34:18  ---> Running in 7d2cf492c369
10:34:19  ---> 5f27edd33d6d
10:34:19 Removing intermediate container 7d2cf492c369
10:34:19 Step 28/28 : 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 bacchus_gazebo --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic bacchus_gazebo --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 bacchus_gazebo ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --env-vars  --dockerfile-dir /tmp/docker_build_binarydeb
10:34:19  ---> Running in b7c931f92043
10:34:19  ---> 90a37ae78e57
10:34:19 Removing intermediate container b7c931f92043
10:34:19 Successfully built 90a37ae78e57
10:34:19 Successfully tagged binarydeb_task_generation.melodic_ubuntu_bionic_amd64_bacchus_gazebo:latest
10:34:19 + echo # END SECTION
10:34:19 # END SECTION
10:34:19 + echo # BEGIN SECTION: Run Dockerfile - binarydeb task
1. Run Dockerfile - binarydeb task

Hide Details

10:34:19 # BEGIN SECTION: Run Dockerfile - binarydeb task 10:34:19 + [ -f /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/binarydeb ] 10:34:19 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/binarydeb 10:34:19 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/docker_build_binarydeb 10:34:19 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/binarydeb 10:34:19 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/docker_build_binarydeb 10:34:19 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__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_bacchus_gazebo
1.1. get sourcedeb

Hide Details

10:34:20 # BEGIN SUBSECTION: get sourcedeb 10:34:29 Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-bacchus-gazebo=0.3.2-1bionic' 10:34:34 Invoking 'apt-get source --download-only --only-source ros-melodic-bacchus-gazebo=0.3.2-1bionic' 10:34:34 Reading package lists... 10:34:34 Need to get 73.0 MB of source archives. 10:34:34 Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-bacchus-gazebo 0.3.2-1bionic (dsc) [1,337 B] 10:34:34 Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-bacchus-gazebo 0.3.2-1bionic (tar) [73.0 MB] 10:34:34 Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-bacchus-gazebo 0.3.2-1bionic (diff) [3,528 B] 10:34:34 Fetched 73.0 MB in 2s (35.7 MB/s) 10:34:34 Download complete and in download only mode 10:34:34 Invoking 'dpkg-source -x ros-melodic-bacchus-gazebo_0.3.2-1bionic.dsc' 10:34:35 dpkg-source: warning: extracting unsigned source package (ros-melodic-bacchus-gazebo_0.3.2-1bionic.dsc) 10:34:36 dpkg-source: info: extracting ros-melodic-bacchus-gazebo in ros-melodic-bacchus-gazebo-0.3.2 10:34:36 dpkg-source: info: unpacking ros-melodic-bacchus-gazebo_0.3.2.orig.tar.gz 10:34:37 dpkg-source: info: unpacking ros-melodic-bacchus-gazebo_0.3.2-1bionic.debian.tar.xz 10:34:38 Package maintainer emails: marc@hanheide.net rpolvara@lincoln.ac.uk 10:34:38 # END SUBSECTION
1.2. append build timestamp

Hide Details

10:34:38 # BEGIN SUBSECTION: append build timestamp 10:34:38 Invoking 'debchange -v 0.3.2-1bionic.20211017.093438 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:34:38 # END SUBSECTION
10:34:42 Looking for the '.dsc' file of package 'ros-melodic-bacchus-gazebo' with version '0.3.2-1' 10:34:45 Using the following distribution repositories: 10:34:45 http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) 10:34:45 http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) 10:34:45 Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': 10:34:45 # generated from release/binarydeb_task.Dockerfile.em 10:34:45 10:34:45 10:34:45 FROM ubuntu:bionic 10:34:45 10:34:45 VOLUME ["/var/cache/apt/archives"] 10:34:45 10:34:45 ENV DEBIAN_FRONTEND noninteractive 10:34:45 10:34:45 10:34:45 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 10:34:45 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 10:34:45 RUN locale-gen en_US.UTF-8 10:34:45 ENV LANG en_US.UTF-8 10:34:45 ENV TZ GMT+00 10:34:45 10:34:45 RUN useradd -u 1002 -l -m buildfarm 10:34:45 10:34:45 RUN mkdir /tmp/keys 10:34:45 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 10:34:45 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 10:34:45 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jc\nVFrQhE0L/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3tro\nu5oCR+SyHN9xPnUwDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4\nK/AY0jzT6OpHfXU6ytlFsI47ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rG\naIoAWlx2H0J7sAHmqS29N9jV9mo135d+d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+\nTwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS6nHrWH2WqQxRbiITl0irkQoz\npwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBNqoAQRbvWvBhPjO/p\nV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL8bwxX7UT\nhM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVV\nokdGpcUzvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQAB\ntCZPcGVuIFJvYm90aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoA\nPhYhBMHPbjHmut6IaLFytPQu1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUK\nCQgLAgQWAgMBAh4BAheAAAoJEPQu1vurF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQ\nnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeANKARNCaGLyNIWkuyDovPV0xZJ\nrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/sNGByJEhs37F05AnF\nvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHvZSxRonWh\nNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kj\nJ4e7YAZobC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6\nDiJVfXuWkk5PM2zsFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbR\nfp/4W7uCPFvwAatWEHJhlM3sQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQ\nqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePRhE+J9mejgWRZxkjAH/FlAubqXkDgterC\nh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/MpPWAHCqpQhe2DET/jRSaM53US\nAHNx8kw4MPUkxExgI7SdiQJUBBMBCAA+AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4B\nAheAFiEEwc9uMea63ohosXK09C7W+6sXxlQFAmCx2FEFCQtMxbsACgkQ9C7W+6sX\nxlRMzA//d/sSQ48gWNR1Gak0nZ1viIFFC7lvZIlEb4oh1u9AHMpQExXr9FSEQM+O\nFdkjfMN6/MF7C8AwqSqzZDVxaj1ZXtk/JOS9LJ7L9OOf4+jNx2/OS+sSMMx+0iTw\nTVbMsaru+c8tnWr9vpWrgffvdn4QNZoNoPBbvYJsIEtYBW2p9/zQLCUjbHx9gcqv\ndUFSfBxc0dHj6dEAF8BadpTiT6hOyEJC5yx3y+K01+xJesq4rLP3UhEdE+cmPHxS\n8ZTi1EZ+seTDXnTkRm+A/Ta9d5HJYFF8qIvW8bLi0JJEN1k7eazYnabTxU+/rkew\ndpZgyc76s0mYxmP130l0v/0ZF/kXpTSq6ggUvf0GFQS8HKe6qWuqKy2fI6HDxb8h\nDL/KY3MExwzPqtwyMzCGSCb8s1ehIPXU6sm7iS1DBGHC8ZVqucHyKHCOxPFkXKVo\nuYVJ9oD44CU6oItLU6QhUzONb5SXoDqqOIIRQ6yeV/gIaWHM0xk7HeWjDqLHMSoo\n5x8QKl4iPzRrZ8EOZaRwACOUe7pUGEBNQMb17bEovNXZn8Mtixvf6f1Bbso7TJkp\n+K5SjoBhugCKhAqfmOHeJG+MaHZSOmjbYb6hp7c9wJzsb7PXaPrEhjvT0VC4Dj10\nDZinMx1rT85fgs/npJMS94NGs74KdXpYT4XkVogrBvvY8visuLg=\n=p9Xy\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 10:34:45 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:34:45 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:34:45 10:34:45 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)) 10:34:45 10:34:45 RUN mkdir /tmp/wrapper_scripts 10:34:45 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 10:34:45 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 10:34:45 10:34:45 # automatic invalidation once every day 10:34:45 RUN echo "2021-10-17 (+0000)" 10:34:45 10:34:45 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 10:34:45 10:34:45 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 10:34:45 10:34:45 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 10:34:45 10:34:45 10:34:45 # for each dependency: echo version, apt update, apt install, apt clean 10:34:45 # to prevent exceeding the docker layer limit several lines have been folded 10:34:45 RUN echo "apt-src: 0.25.2" && echo "curl: 7.58.0-2ubuntu3.16" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src curl debhelper 10:34:45 RUN echo "libcurl4-openssl-dev: 7.58.0-2ubuntu3.16" && echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && echo "ros-melodic-fake-localization: 1.16.7-1bionic.20210921.223026" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libcurl4-openssl-dev ros-melodic-catkin ros-melodic-fake-localization 10:34:45 RUN echo "ros-melodic-kinect2-description: 0.1.0-1bionic.20200402.191744" && echo "ros-melodic-nav-msgs: 1.12.8-1bionic.20210505.012414" && echo "ros-melodic-roscpp: 1.14.12-1bionic.20210921.180348" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-kinect2-description ros-melodic-nav-msgs ros-melodic-roscpp 10:34:45 RUN echo "ros-melodic-rospy: 1.14.12-1bionic.20210921.181015" && echo "ros-melodic-sensor-msgs: 1.12.8-1bionic.20210921.205104" && echo "ros-melodic-std-msgs: 0.5.12-0bionic.20210505.005906" && echo "ros-melodic-thorvald-gazebo-plugins: 2.1.1-1bionic.20210714.122813" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-rospy ros-melodic-sensor-msgs ros-melodic-std-msgs ros-melodic-thorvald-gazebo-plugins 10:34:45 RUN echo "ros-melodic-thorvald-twist-mux: 2.1.1-1bionic.20210714.113345" && echo "ros-melodic-velodyne-description: 1.0.12-1bionic.20210921.204923" && echo "ros-melodic-velodyne-gazebo-plugins: 1.0.12-1bionic.20210921.213953" && echo "unzip: 6.0-21ubuntu1.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-thorvald-twist-mux ros-melodic-velodyne-description ros-melodic-velodyne-gazebo-plugins unzip 10:34:45 10:34:45 10:34:45 USER buildfarm 10:34:45 ENTRYPOINT ["sh", "-c"] 10:34:45 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic bacchus_gazebo --sourcedeb-dir /tmp/binarydeb"] 10:34:45 Mount the following volumes when running the container: 10:34:45 -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro 10:34:45 -v /tmp/binarydeb:/tmp/binarydeb 10:34:45 + echo # END SECTION 10:34:45 # END SECTION
10:34:45 [Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins4429731401439640991.sh 10:34:45 + sleep 1 10:34:45 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 31394 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid 10:34:46 + echo # BEGIN SECTION: Build Dockerfile - build binarydeb
2. Build Dockerfile - build binarydeb

Hide Details

10:34:46 # BEGIN SECTION: Build Dockerfile - build binarydeb 10:34:46 + cd /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/docker_build_binarydeb 10:34:46 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 10:34:46 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 10:34:46 Check docker base image for updates: docker pull ubuntu:bionic 10:34:48 bionic: Pulling from library/ubuntu 10:34:48 Digest: sha256:0fedbd5bd9fb72089c7bbca476949e10593cebed9b1fb9edf5b79dbbacddd7d6 10:34:48 Status: Image is up to date for ubuntu:bionic 10:34:48 + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_bacchus_gazebo . 10:34:48 Sending build context to Docker daemon 23.04kB 10:34:48 Step 1/31 : FROM ubuntu:bionic 10:34:48 ---> 5a214d77f5d7 10:34:48 Step 2/31 : VOLUME /var/cache/apt/archives 10:34:48 ---> Using cache 10:34:48 ---> e49db00cf9ad 10:34:48 Step 3/31 : ENV DEBIAN_FRONTEND noninteractive 10:34:48 ---> Using cache 10:34:48 ---> e59ff29e0055 10:34:48 Step 4/31 : 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 10:34:48 ---> Using cache 10:34:48 ---> 3359d2b396ae 10:34:48 Step 5/31 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 10:34:48 ---> Using cache 10:34:48 ---> 2b35ba323ec0 10:34:48 Step 6/31 : RUN locale-gen en_US.UTF-8 10:34:48 ---> Using cache 10:34:48 ---> 9deda45a5850 10:34:48 Step 7/31 : ENV LANG en_US.UTF-8 10:34:48 ---> Using cache 10:34:48 ---> e5659be84e2f 10:34:48 Step 8/31 : ENV TZ GMT+00 10:34:48 ---> Using cache 10:34:48 ---> 308dfc73d5e9 10:34:48 Step 9/31 : RUN useradd -u 1002 -l -m buildfarm 10:34:48 ---> Using cache 10:34:48 ---> 60dde1ab5d4b 10:34:48 Step 10/31 : RUN mkdir /tmp/keys 10:34:48 ---> Using cache 10:34:48 ---> dc493807a308 10:34:48 Step 11/31 : 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 10:34:48 ---> Using cache 10:34:48 ---> 91b3e4477ceb 10:34:48 Step 12/31 : 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 10:34:48 ---> Using cache 10:34:48 ---> d14c9e14f0c0 10:34:48 Step 13/31 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jc\nVFrQhE0L/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3tro\nu5oCR+SyHN9xPnUwDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4\nK/AY0jzT6OpHfXU6ytlFsI47ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rG\naIoAWlx2H0J7sAHmqS29N9jV9mo135d+d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+\nTwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS6nHrWH2WqQxRbiITl0irkQoz\npwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBNqoAQRbvWvBhPjO/p\nV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL8bwxX7UT\nhM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVV\nokdGpcUzvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQAB\ntCZPcGVuIFJvYm90aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoA\nPhYhBMHPbjHmut6IaLFytPQu1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUK\nCQgLAgQWAgMBAh4BAheAAAoJEPQu1vurF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQ\nnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeANKARNCaGLyNIWkuyDovPV0xZJ\nrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/sNGByJEhs37F05AnF\nvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHvZSxRonWh\nNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kj\nJ4e7YAZobC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6\nDiJVfXuWkk5PM2zsFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbR\nfp/4W7uCPFvwAatWEHJhlM3sQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQ\nqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePRhE+J9mejgWRZxkjAH/FlAubqXkDgterC\nh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/MpPWAHCqpQhe2DET/jRSaM53US\nAHNx8kw4MPUkxExgI7SdiQJUBBMBCAA+AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4B\nAheAFiEEwc9uMea63ohosXK09C7W+6sXxlQFAmCx2FEFCQtMxbsACgkQ9C7W+6sX\nxlRMzA//d/sSQ48gWNR1Gak0nZ1viIFFC7lvZIlEb4oh1u9AHMpQExXr9FSEQM+O\nFdkjfMN6/MF7C8AwqSqzZDVxaj1ZXtk/JOS9LJ7L9OOf4+jNx2/OS+sSMMx+0iTw\nTVbMsaru+c8tnWr9vpWrgffvdn4QNZoNoPBbvYJsIEtYBW2p9/zQLCUjbHx9gcqv\ndUFSfBxc0dHj6dEAF8BadpTiT6hOyEJC5yx3y+K01+xJesq4rLP3UhEdE+cmPHxS\n8ZTi1EZ+seTDXnTkRm+A/Ta9d5HJYFF8qIvW8bLi0JJEN1k7eazYnabTxU+/rkew\ndpZgyc76s0mYxmP130l0v/0ZF/kXpTSq6ggUvf0GFQS8HKe6qWuqKy2fI6HDxb8h\nDL/KY3MExwzPqtwyMzCGSCb8s1ehIPXU6sm7iS1DBGHC8ZVqucHyKHCOxPFkXKVo\nuYVJ9oD44CU6oItLU6QhUzONb5SXoDqqOIIRQ6yeV/gIaWHM0xk7HeWjDqLHMSoo\n5x8QKl4iPzRrZ8EOZaRwACOUe7pUGEBNQMb17bEovNXZn8Mtixvf6f1Bbso7TJkp\n+K5SjoBhugCKhAqfmOHeJG+MaHZSOmjbYb6hp7c9wJzsb7PXaPrEhjvT0VC4Dj10\nDZinMx1rT85fgs/npJMS94NGs74KdXpYT4XkVogrBvvY8visuLg=\n=p9Xy\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 10:34:48 ---> Using cache 10:34:48 ---> 0adb93d575b3 10:34:48 Step 14/31 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:34:48 ---> Using cache 10:34:48 ---> 7f7e0b1f2aea 10:34:48 Step 15/31 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:34:48 ---> Using cache 10:34:48 ---> 0fa3be8fd659 10:34:48 Step 16/31 : 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)) 10:34:48 ---> Using cache 10:34:48 ---> ab43fd848ee3 10:34:48 Step 17/31 : RUN mkdir /tmp/wrapper_scripts 10:34:48 ---> Using cache 10:34:48 ---> cac2f10f7424 10:34:48 Step 18/31 : 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 10:34:48 ---> Using cache 10:34:48 ---> 2891c294214c 10:34:48 Step 19/31 : 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 10:34:48 ---> Using cache 10:34:48 ---> e7489e1f790f 10:34:48 Step 20/31 : RUN echo "2021-10-17 (+0000)" 10:34:48 ---> Using cache 10:34:48 ---> 1f8e3008b0ea 10:34:48 Step 21/31 : 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 10:34:48 ---> Using cache 10:34:48 ---> 8ee34d33ddf2 10:34:48 Step 22/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 10:34:48 ---> Using cache 10:34:48 ---> 43633a21bff6 10:34:48 Step 23/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 10:34:48 ---> Using cache 10:34:48 ---> 1683d6e12971 10:34:48 Step 24/31 : RUN echo "apt-src: 0.25.2" && echo "curl: 7.58.0-2ubuntu3.16" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src curl debhelper 10:34:48 ---> Using cache 10:34:48 ---> eed8e04dade0 10:34:48 Step 25/31 : RUN echo "libcurl4-openssl-dev: 7.58.0-2ubuntu3.16" && echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && echo "ros-melodic-fake-localization: 1.16.7-1bionic.20210921.223026" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libcurl4-openssl-dev ros-melodic-catkin ros-melodic-fake-localization 10:34:48 ---> Using cache 10:34:48 ---> 086bcdf1f85d 10:34:48 Step 26/31 : RUN echo "ros-melodic-kinect2-description: 0.1.0-1bionic.20200402.191744" && echo "ros-melodic-nav-msgs: 1.12.8-1bionic.20210505.012414" && echo "ros-melodic-roscpp: 1.14.12-1bionic.20210921.180348" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-kinect2-description ros-melodic-nav-msgs ros-melodic-roscpp 10:34:48 ---> Using cache 10:34:48 ---> 625b9f676c06 10:34:48 Step 27/31 : RUN echo "ros-melodic-rospy: 1.14.12-1bionic.20210921.181015" && echo "ros-melodic-sensor-msgs: 1.12.8-1bionic.20210921.205104" && echo "ros-melodic-std-msgs: 0.5.12-0bionic.20210505.005906" && echo "ros-melodic-thorvald-gazebo-plugins: 2.1.1-1bionic.20210714.122813" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-rospy ros-melodic-sensor-msgs ros-melodic-std-msgs ros-melodic-thorvald-gazebo-plugins 10:34:48 ---> Using cache 10:34:48 ---> 708ead9e57e5 10:34:48 Step 28/31 : RUN echo "ros-melodic-thorvald-twist-mux: 2.1.1-1bionic.20210714.113345" && echo "ros-melodic-velodyne-description: 1.0.12-1bionic.20210921.204923" && echo "ros-melodic-velodyne-gazebo-plugins: 1.0.12-1bionic.20210921.213953" && echo "unzip: 6.0-21ubuntu1.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-thorvald-twist-mux ros-melodic-velodyne-description ros-melodic-velodyne-gazebo-plugins unzip 10:34:48 ---> Using cache 10:34:48 ---> 0b3d11425314 10:34:48 Step 29/31 : USER buildfarm 10:34:48 ---> Using cache 10:34:48 ---> 85aa513c3726 10:34:48 Step 30/31 : ENTRYPOINT sh -c 10:34:48 ---> Using cache 10:34:48 ---> 310ad75bbdff 10:34:48 Step 31/31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic bacchus_gazebo --sourcedeb-dir /tmp/binarydeb 10:34:48 ---> Using cache 10:34:48 ---> b49fb37a431a 10:34:48 Successfully built b49fb37a431a 10:34:48 Successfully tagged binarydeb_build.melodic_ubuntu_bionic_amd64_bacchus_gazebo:latest 10:34:48 + echo # END SECTION 10:34:48 # END SECTION
10:34:48 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb
3. Run Dockerfile - build binarydeb

Hide Details

10:34:48 # BEGIN SECTION: Run Dockerfile - build binarydeb 10:34:48 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_bacchus_gazebo
3.1. build binarydeb

Hide Details

10:34:49 # BEGIN SUBSECTION: build binarydeb 10:34:49 Package 'ros-melodic-bacchus-gazebo' version: 0.3.2-1bionic.20211017.093438 10:34:52 Invoking 'apt-src build ros-melodic-bacchus-gazebo' in '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:34:55 I: Building in /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 .. 10:34:55 dpkg-buildpackage: info: source package ros-melodic-bacchus-gazebo 10:34:55 dpkg-buildpackage: info: source version 0.3.2-1bionic.20211017.093438 10:34:55 dpkg-buildpackage: info: source distribution bionic 10:34:55 dpkg-buildpackage: info: source changed by mhanheide <marc@hanheide.net> 10:34:55 dpkg-source --before-build ros-melodic-bacchus-gazebo-0.3.2 10:34:55 dpkg-buildpackage: info: host architecture amd64 10:34:55 dpkg-source: info: using options from ros-melodic-bacchus-gazebo-0.3.2/debian/source/options: --auto-commit 10:34:56 fakeroot debian/rules clean 10:34:56 dh clean -v --buildsystem=cmake 10:34:56 dh_testdir -O-v -O--buildsystem=cmake 10:34:56 dh_auto_clean -O-v -O--buildsystem=cmake 10:34:56 dh_clean -O-v -O--buildsystem=cmake 10:34:56 rm -f debian/debhelper-build-stamp 10:34:56 rm -rf debian/.debhelper/ 10:34:56 rm -f -- debian/ros-melodic-bacchus-gazebo.substvars debian/files 10:34:56 rm -fr -- debian/ros-melodic-bacchus-gazebo/ debian/tmp/ 10:34:56 find . \( \( \ 10:34:56 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \ 10:34:56 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 10:34:56 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 10:34:56 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 10:34:56 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 10:34:56 \) -exec rm -f {} + \) -o \ 10:34:56 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 10:34:56 debian/rules build 10:34:56 dh build -v --buildsystem=cmake 10:34:57 dh_testdir -O-v -O--buildsystem=cmake 10:34:57 dh_update_autotools_config -O-v -O--buildsystem=cmake 10:34:57 debian/rules override_dh_auto_configure 10:34:57 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:34:57 # In case we're installing to a non-standard location, look for a setup.sh 10:34:57 # in the install tree that was dropped by catkin, and source it. It will 10:34:57 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 10:34:57 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 10:34:57 dh_auto_configure -- \ 10:34:57 -DCATKIN_BUILD_BINARY_PACKAGE="1" \ 10:34:57 -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \ 10:34:57 -DCMAKE_PREFIX_PATH="/opt/ros/melodic" 10:34:57 install -d obj-x86_64-linux-gnu 10:34:57 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 10:34:58 -- The C compiler identification is GNU 7.5.0 10:34:59 -- The CXX compiler identification is GNU 7.5.0 10:34:59 -- Check for working C compiler: /usr/bin/cc 10:34:59 -- Check for working C compiler: /usr/bin/cc -- works 10:34:59 -- Detecting C compiler ABI info 10:34:59 -- Detecting C compiler ABI info - done 10:34:59 -- Detecting C compile features 10:35:00 -- Detecting C compile features - done 10:35:00 -- Check for working CXX compiler: /usr/bin/c++ 10:35:00 -- Check for working CXX compiler: /usr/bin/c++ -- works 10:35:00 -- Detecting CXX compiler ABI info 10:35:00 -- Detecting CXX compiler ABI info - done 10:35:00 -- Detecting CXX compile features 10:35:01 -- Detecting CXX compile features - done 10:35:01 -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/devel 10:35:01 -- Using CMAKE_PREFIX_PATH: /opt/ros/melodic 10:35:01 -- This workspace overlays: /opt/ros/melodic 10:35:01 -- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.17", minimum required is "2") 10:35:01 -- Using PYTHON_EXECUTABLE: /usr/bin/python2 10:35:01 -- Using Debian Python package layout 10:35:01 -- Using empy: /usr/bin/empy 10:35:02 -- Using CATKIN_ENABLE_TESTING: ON 10:35:02 -- Skip enable_testing() when building binary package 10:35:02 -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/test_results 10:35:02 -- Found gtest sources under '/usr/src/googletest': gtests will be built 10:35:02 -- Found gmock sources under '/usr/src/googletest': gmock will be built 10:35:02 -- Found PythonInterp: /usr/bin/python2 (found version "2.7.17") 10:35:02 -- Looking for pthread.h 10:35:02 -- Looking for pthread.h - found 10:35:02 -- Looking for pthread_create 10:35:02 -- Looking for pthread_create - not found 10:35:02 -- Looking for pthread_create in pthreads 10:35:02 -- Looking for pthread_create in pthreads - not found 10:35:02 -- Looking for pthread_create in pthread 10:35:03 -- Looking for pthread_create in pthread - found 10:35:03 -- Found Threads: TRUE 10:35:03 -- Using Python nosetests: /usr/bin/nosetests-2.7 10:35:03 -- catkin 0.7.29 10:35:03 -- BUILD_SHARED_LIBS is on 10:35:03 -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy 10:35:04 -- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1") 10:35:04 -- Checking for module 'bullet>=2.82' 10:35:04 -- Found bullet, version 2.87 10:35:04 -- Found Simbody: /usr/include/simbody 10:35:04 -- Boost version: 1.65.1 10:35:04 -- Found the following Boost libraries: 10:35:04 -- thread 10:35:04 -- system 10:35:04 -- filesystem 10:35:04 -- program_options 10:35:04 -- regex 10:35:04 -- iostreams 10:35:04 -- date_time 10:35:04 -- chrono 10:35:04 -- atomic 10:35:04 -- Found Protobuf: /usr/lib/x86_64-linux-gnu/libprotobuf.so;-lpthread (found version "3.0.0") 10:35:04 -- Boost version: 1.65.1 10:35:04 -- Looking for OGRE... 10:35:04 -- OGRE_PREFIX_WATCH changed. 10:35:04 -- Checking for module 'OGRE' 10:35:05 -- Found OGRE, version 1.9.0 10:35:05 -- Found Ogre Ghadamon (1.9.0) 10:35:05 -- Found OGRE: optimized;/usr/lib/x86_64-linux-gnu/libOgreMain.so;debug;/usr/lib/x86_64-linux-gnu/libOgreMain.so 10:35:05 CMake Warning (dev) at /usr/share/cmake-3.10/Modules/FindBoost.cmake:911 (if): 10:35:05 Policy CMP0054 is not set: Only interpret if() arguments as variables or 10:35:05 keywords when unquoted. Run "cmake --help-policy CMP0054" for policy 10:35:05 details. Use the cmake_policy command to set the policy and suppress this 10:35:05 warning. 10:35:05 10:35:05 Quoted variables like "chrono" will no longer be dereferenced when the 10:35:05 policy is set to NEW. Since the policy is not set the OLD behavior will be 10:35:05 used. 10:35:05 Call Stack (most recent call first): 10:35:05 /usr/share/cmake-3.10/Modules/FindBoost.cmake:1558 (_Boost_MISSING_DEPENDENCIES) 10:35:05 /usr/share/OGRE/cmake/modules/FindOGRE.cmake:318 (find_package) 10:35:05 /usr/lib/x86_64-linux-gnu/cmake/gazebo/gazebo-config.cmake:175 (find_package) 10:35:05 CMakeLists.txt:22 (find_package) 10:35:05 This warning is for project developers. Use -Wno-dev to suppress it. 10:35:05 10:35:05 -- Looking for OGRE_Paging... 10:35:05 -- Found OGRE_Paging: optimized;/usr/lib/x86_64-linux-gnu/libOgrePaging.so;debug;/usr/lib/x86_64-linux-gnu/libOgrePaging.so 10:35:05 -- Looking for OGRE_Terrain... 10:35:05 -- Found OGRE_Terrain: optimized;/usr/lib/x86_64-linux-gnu/libOgreTerrain.so;debug;/usr/lib/x86_64-linux-gnu/libOgreTerrain.so 10:35:05 -- Looking for OGRE_Property... 10:35:05 -- Found OGRE_Property: optimized;/usr/lib/x86_64-linux-gnu/libOgreProperty.so;debug;/usr/lib/x86_64-linux-gnu/libOgreProperty.so 10:35:05 -- Looking for OGRE_RTShaderSystem... 10:35:05 -- Found OGRE_RTShaderSystem: optimized;/usr/lib/x86_64-linux-gnu/libOgreRTShaderSystem.so;debug;/usr/lib/x86_64-linux-gnu/libOgreRTShaderSystem.so 10:35:05 -- Looking for OGRE_Volume... 10:35:05 -- Found OGRE_Volume: optimized;/usr/lib/x86_64-linux-gnu/libOgreVolume.so;debug;/usr/lib/x86_64-linux-gnu/libOgreVolume.so 10:35:05 -- Looking for OGRE_Overlay... 10:35:05 -- Found OGRE_Overlay: optimized;/usr/lib/x86_64-linux-gnu/libOgreOverlay.so;debug;/usr/lib/x86_64-linux-gnu/libOgreOverlay.so 10:35:05 -- Found Protobuf: /usr/lib/x86_64-linux-gnu/libprotobuf.so;-lpthread;-lpthread (found suitable version "3.0.0", minimum required is "2.3.0") 10:35:05 -- Config-file not installed for ZeroMQ -- checking for pkg-config 10:35:05 -- Checking for module 'libzmq >= 4' 10:35:05 -- Found libzmq , version 4.2.5 10:35:05 -- Found ZeroMQ: TRUE (Required is at least version "4") 10:35:05 -- Checking for module 'uuid' 10:35:05 -- Found uuid, version 2.31.1 10:35:05 -- Found UUID: TRUE 10:35:05 -- Checking for module 'tinyxml2' 10:35:05 -- Found tinyxml2, version 6.0.0 10:35:05 -- Looking for dlfcn.h - found 10:35:05 -- Looking for libdl - found 10:35:05 -- Found DL: TRUE 10:35:05 -- FreeImage.pc not found, we will search for FreeImage_INCLUDE_DIRS and FreeImage_LIBRARIES 10:35:06 -- Checking for module 'gts' 10:35:06 -- Found gts, version 0.7.6 10:35:06 -- Found GTS: TRUE 10:35:06 -- Checking for module 'libswscale' 10:35:06 -- Found libswscale, version 4.8.100 10:35:06 -- Found SWSCALE: TRUE 10:35:06 -- Checking for module 'libavdevice >= 56.4.100' 10:35:06 -- Found libavdevice , version 57.10.100 10:35:06 -- Found AVDEVICE: TRUE (Required is at least version "56.4.100") 10:35:06 -- Checking for module 'libavformat' 10:35:06 -- Found libavformat, version 57.83.100 10:35:07 -- Found AVFORMAT: TRUE 10:35:07 -- Checking for module 'libavcodec' 10:35:07 -- Found libavcodec, version 57.107.100 10:35:07 -- Found AVCODEC: TRUE 10:35:07 -- Checking for module 'libavutil' 10:35:07 -- Found libavutil, version 55.78.100 10:35:07 -- Found AVUTIL: TRUE 10:35:07 -- Found CURL: /usr/lib/x86_64-linux-gnu/libcurl.so (found version "7.58.0") 10:35:07 -- Checking for module 'jsoncpp' 10:35:07 -- Found jsoncpp, version 1.7.4 10:35:07 -- Found JSONCPP: TRUE 10:35:07 -- Checking for module 'yaml-0.1' 10:35:07 -- Found yaml-0.1, version 0.1.7 10:35:07 -- Found YAML: TRUE 10:35:07 -- Checking for module 'libzip' 10:35:07 -- Found libzip, version 1.1.2 10:35:07 -- Found ZIP: TRUE 10:35:08 -- Configuring done 10:35:08 CMake Warning (dev) at CMakeLists.txt:271 (add_dependencies): 10:35:08 Policy CMP0046 is not set: Error on non-existent dependency in 10:35:08 add_dependencies. Run "cmake --help-policy CMP0046" for policy details. 10:35:08 Use the cmake_policy command to set the policy and suppress this warning. 10:35:08 10:35:08 The dependency target "preinstall" of target "get_models" does not exist. 10:35:08 This warning is for project developers. Use -Wno-dev to suppress it. 10:35:08 10:35:08 -- Generating done 10:35:08 CMake Warning: 10:35:08 Manually-specified variables were not used by the project: 10:35:08 10:35:08 CMAKE_EXPORT_NO_PACKAGE_REGISTRY 10:35:08 CMAKE_INSTALL_LOCALSTATEDIR 10:35:08 CMAKE_INSTALL_SYSCONFDIR 10:35:08 10:35:08 10:35:08 -- Build files have been written to: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu 10:35:08 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:35:08 debian/rules override_dh_auto_build 10:35:08 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:35:08 # In case we're installing to a non-standard location, look for a setup.sh 10:35:08 # in the install tree that was dropped by catkin, and source it. It will 10:35:08 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 10:35:08 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 10:35:08 dh_auto_build 10:35:08 cd obj-x86_64-linux-gnu && make -j1 10:35:08 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:08 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 -B/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 10:35:08 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 10:35:08 make -f CMakeFiles/Makefile2 all 10:35:08 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:08 make -f CMakeFiles/get_models.dir/build.make CMakeFiles/get_models.dir/depend 10:35:08 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:08 cd /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles/get_models.dir/DependInfo.cmake --color= 10:35:08 Scanning dependencies of target get_models 10:35:08 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:08 make -f CMakeFiles/get_models.dir/build.make CMakeFiles/get_models.dir/build 10:35:08 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:08 [ 50%] downloading additional models 10:35:08 curl --progress-bar -o "'3D;models.zip'" https://lcas.lincoln.ac.uk/nextcloud/index.php/s/7zi4gfE7c2naE7A/download 10:35:09 #=#=# ##O#- # ##O=# # #-#O=# # #-#O=# # #-#O=-# # #-=#=-# # #-=#=- # # #-=#=- # # #-=O#- # # #=O=# # # #=O=-# # # -#O=-# # # -=#=- # # # -=#=- # # # -=O#- # # # -=O=-# # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # ## -=O=- # # # # -=O=- # # ## -=O=- # # # -=O=- # ## -=O=- ### -=O=- ### -=O=- ## -=O=- # # -=O=- # ## -=O=- # # # -=O=- # ### -=O=- # # ## -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O#- # # # #=O=-# # # # -=#=- # # # #-=O=# # # # -#O=- # # # # -=O#- # # # #=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- 10:35:16 [100%] extracting additional models 10:35:16 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "'3D;models.zip'" 10:35:18 touch .models-extracted 10:35:18 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/vine_t.zip" 10:35:25 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/heightmap.zip" 10:35:26 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/riseholme_ih.zip" 10:35:29 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/riseholme.zip" 10:35:30 rm -r "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models" 10:35:30 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:30 [100%] Built target get_models 10:35:30 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:30 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles 0 10:35:30 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:30 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:35:30 debian/rules override_dh_auto_test 10:35:30 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:35:30 # In case we're installing to a non-standard location, look for a setup.sh 10:35:30 # in the install tree that was dropped by catkin, and source it. It will 10:35:30 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 10:35:30 echo -- Running tests. Even if one of them fails the build is not canceled. 10:35:31 -- Running tests. Even if one of them fails the build is not canceled. 10:35:31 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 10:35:31 dh_auto_test || true 10:35:31 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:35:31 fakeroot debian/rules binary 10:35:32 dh binary -v --buildsystem=cmake 10:35:32 dh_testroot -O-v -O--buildsystem=cmake 10:35:32 dh_prep -O-v -O--buildsystem=cmake 10:35:32 rm -f -- debian/ros-melodic-bacchus-gazebo.substvars 10:35:32 rm -fr -- debian/.debhelper/generated/ros-melodic-bacchus-gazebo/ debian/ros-melodic-bacchus-gazebo/ debian/tmp/ 10:35:32 dh_installdirs -O-v -O--buildsystem=cmake 10:35:32 install -d debian/ros-melodic-bacchus-gazebo 10:35:32 debian/rules override_dh_auto_install 10:35:32 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:35:32 # In case we're installing to a non-standard location, look for a setup.sh 10:35:32 # in the install tree that was dropped by catkin, and source it. It will 10:35:32 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 10:35:32 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 10:35:32 dh_auto_install 10:35:32 cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo AM_UPDATE_INFO_DIR=no 10:35:32 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:32 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 -B/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 10:35:32 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 10:35:32 make -f CMakeFiles/Makefile2 all 10:35:32 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:32 make -f CMakeFiles/get_models.dir/build.make CMakeFiles/get_models.dir/depend 10:35:32 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:32 cd /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles/get_models.dir/DependInfo.cmake --color= 10:35:32 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:32 make -f CMakeFiles/get_models.dir/build.make CMakeFiles/get_models.dir/build 10:35:32 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:32 [ 50%] downloading additional models 10:35:32 curl --progress-bar -o "'3D;models.zip'" https://lcas.lincoln.ac.uk/nextcloud/index.php/s/7zi4gfE7c2naE7A/download 10:35:33 #=#=# ##O#- # ##O=# # #-#O=# # #-#O=# # #-#O=-# # #-=#=-# # #-=#=- # # #-=#=- # # #-=O#- # # #=O=# # # #=O=-# # # -#O=-# # # -=#=- # # # -=#=- # # # -=O#- # # # -=O=-# # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # ## -=O=- # # # # -=O=- # # ## -=O=- # # # -=O=- # ## -=O=- ### -=O=- ### -=O=- ## -=O=- # # -=O=- # ## -=O=- # # # -=O=- # ### -=O=- # # ## -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=# # # # -#O=- # # # # -=O#- # # # #=O=-# # # # -=#=- # # # #-=O=# # # # -#O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- # # # # -=O=- 10:35:45 [100%] extracting additional models 10:35:45 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "'3D;models.zip'" 10:35:47 touch .models-extracted 10:35:47 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/vine_t.zip" 10:35:53 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/heightmap.zip" 10:35:54 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/riseholme_ih.zip" 10:35:57 unzip -q -o -d /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models/riseholme.zip" 10:35:58 rm -r "/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models/3D models" 10:35:58 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:58 [100%] Built target get_models 10:35:58 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:58 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu/CMakeFiles 0 10:35:58 make -f CMakeFiles/Makefile2 preinstall 10:35:58 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:58 make[3]: Nothing to be done for 'preinstall'. 10:35:58 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:35:58 Install the project... 10:35:58 /usr/bin/cmake -P cmake_install.cmake 10:35:58 -- Install configuration: "None" 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/etc/catkin/profile.d/90-bacchus_gazebo.sh 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/catkin_env_hook/90-bacchus_gazebo.sh 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/lib/pkgconfig/bacchus_gazebo.pc 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/cmake/bacchus_gazeboConfig.cmake 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/cmake/bacchus_gazeboConfig-version.cmake 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/package.xml 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/lib/bacchus_gazebo/simple_test.py 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/tests 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/tests/simple_test.py 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/tests/testme.test 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/tests/nav_test.py 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/config 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/config/robot.yaml 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald-sim-vy4.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald-sim.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/vineyard_demo.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald-sim-vy3.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald-sim-vy2.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald-sim-vy1.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/thorvald-sim-vy0.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/launch/world.launch 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/model.sdf 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/model.config 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/materials 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/materials/scripts 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/materials/scripts/cmp9767m_simple.material 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/materials/textures 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/materials/textures/simple.png 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/model.sdf 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/model.config 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/meshes 10:35:58 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/meshes/vine_t4.dae 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/materials/textures/Map__102_Noise.tga.003.tga 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/materials/textures/LeafGrape_color.jpg.006.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/materials/textures/Bark2.jpg.016.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4/materials/textures/Pillar.jpg.006.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/model.sdf 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/model.config 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/scripts 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/scripts/cmp9767m_simple.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/scripts/cmp9767m_realhard.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/scripts/cmp9767m_realeasy.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures/simple.png 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures/realeasy.png 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures/realhard.png 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/model.sdf 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/model.config 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/materials/scripts 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/materials/scripts/cmp9767m_realeasy_bend_1.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/materials/textures/realeasy_bend_1.png 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/model.sdf 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/model.config 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/materials/scripts 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/materials/scripts/cmp9767m_realeasy_bend_2.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/materials/textures/realeasy_bend_2.png 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/model.sdf 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/model.config 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/meshes 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/meshes/old 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/meshes/heightmap.dae 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap0/materials/textures/Dirt 00 seamless.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/model.sdf 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/model.config 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/materials/scripts 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/materials/scripts/cmp9767m_realhard.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/materials/textures/realhard.png 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/model-1_4.sdf 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/model.config 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials/scripts 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials/scripts/grass_ground_plane.material 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials/textures 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials/textures/grass.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials/textures/grass2.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/grass_ground_plane/materials/textures/grass3.jpg 10:35:59 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/model.sdf 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/model.config 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/meshes 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/meshes/heightmap.dae 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/materials 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/materials/textures 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap1/materials/textures/brown_mud_dry_diff_1k.jpg.001.jpg 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/model.sdf 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/model.config 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/meshes 10:36:00 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/meshes/vine_t0.dae 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/materials 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/materials/textures 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/materials/textures/Pillar.jpg.002.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/materials/textures/Bark2.jpg.004.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0/materials/textures/LeafGrape_color.jpg.002.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/model.sdf 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/model.config 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/meshes 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/meshes/vine_t2.dae 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/materials 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/materials/textures 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/materials/textures/Map__102_Noise.tga.001.tga 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/materials/textures/Bark2.jpg.010.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/materials/textures/Pillar.jpg.004.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2/materials/textures/LeafGrape_color.jpg.004.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/model.sdf 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/model.config 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/meshes 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/meshes/vine_t3.dae 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/materials 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/materials/textures 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/materials/textures/Pillar.jpg.005.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/materials/textures/LeafGrape_color.jpg.005.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/materials/textures/Map__102_Noise.tga.002.tga 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3/materials/textures/Bark2.jpg.013.jpg 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/model-1_4.sdf 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/model.config 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/materials 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/materials/scripts 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/materials/scripts/cmp9767m_ground_1.material 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/materials/textures 10:36:01 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/materials/textures/ground.png 10:36:02 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2 10:36:02 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/model.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/materials 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/materials/scripts 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/materials/scripts/cmp9767m_realeasy.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/materials/textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/materials/textures/realeasy.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/wooden_fence 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/wooden_fence/model.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/wooden_fence/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/wooden_fence/meshes 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/wooden_fence/meshes/fence.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/model.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/meshes 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/meshes/vine_t0_coarse.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/materials 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/materials/textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/materials/textures/Pillar.jpg.002.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/materials/textures/Bark2.jpg.004.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t0_coarse/materials/textures/LeafGrape_color.jpg.002.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/model-1_4.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/materials 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/materials/scripts 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/materials/scripts/cmp9767m_ground_2.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/materials/textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/materials/textures/ground.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/model.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/meshes 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/meshes/vine_t1_coarse.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/materials 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/materials/textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/materials/textures/Map__102_Noise.tga 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/materials/textures/Bark2.jpg.007.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/materials/textures/Pillar.jpg.003.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1_coarse/materials/textures/LeafGrape_color.jpg.003.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/model-1_4.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/scripts 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/scripts/cmp9767m_grass.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/scripts/cmp9767m_ground.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/scripts/cmp9767m_terrain.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/scripts/cmp9767m_dirt.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/grass.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/ground.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/dirt.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/terrain.jpg 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/model-1_4.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/scripts 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/scripts/cmp9767m_texture_1.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/scripts/cmp9767m_texture_2.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/scripts/cmp9767m_texture_3.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/scripts/cmp9767m_texture_4.material 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_4.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_1.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_3.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_2.png 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5/model.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5/meshes 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5/meshes/fence_5_brown.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5/meshes/fence.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/fence_5/meshes/fence_5.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/model.sdf 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/model.config 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/archive 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/archive/Riseholme.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/archive/heightmap.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/heightmap.zip 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/Riseholme.dae 10:36:03 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/heightmap.dae 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/materials 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/materials/textures 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/materials/textures/brown_mud_dry_diff_1k.jpg.001.jpg 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/materials/textures/brown_mud_dry_diff_1k.jpg 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/model.sdf 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/model.config 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/meshes 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/meshes/vine_t2_coarse.dae 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/materials 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/materials/textures 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/materials/textures/Map__102_Noise.tga.001.tga 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/materials/textures/Bark2.jpg.010.jpg 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/materials/textures/Pillar.jpg.004.jpg 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t2_coarse/materials/textures/LeafGrape_color.jpg.004.jpg 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_enclosure 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_enclosure/model.sdf 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_enclosure/model.config 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/model.sdf 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/model.config 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/meshes 10:36:04 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/meshes/vine_t4_coarse.dae 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/materials 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/materials/textures 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/materials/textures/Map__102_Noise.tga.003.tga 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/materials/textures/LeafGrape_color.jpg.006.jpg 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/materials/textures/Bark2.jpg.016.jpg 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t4_coarse/materials/textures/Pillar.jpg.006.jpg 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/model.sdf 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/model.config 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/meshes 10:36:05 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/meshes/vine_t1.dae 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/materials 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/materials/textures 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/materials/textures/Map__102_Noise.tga 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/materials/textures/Bark2.jpg.007.jpg 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/materials/textures/Pillar.jpg.003.jpg 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t1/materials/textures/LeafGrape_color.jpg.003.jpg 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/model.sdf 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/model.config 10:36:07 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/meshes 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/meshes/heightmap.zip 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/meshes/heightmap.dae 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/materials 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/materials/textures 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/materials/textures/brown_mud_dry_diff_1k.jpg.001.jpg 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/model.sdf 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/model.config 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/meshes 10:36:08 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/meshes/vine_t3_coarse.dae 10:36:10 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/materials 10:36:10 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/materials/textures 10:36:10 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/materials/textures/Pillar.jpg.005.jpg 10:36:10 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/materials/textures/LeafGrape_color.jpg.005.jpg 10:36:10 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/materials/textures/Map__102_Noise.tga.002.tga 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/vine_t3_coarse/materials/textures/Bark2.jpg.013.jpg 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/bacchus_sensors.xacro 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/sensors 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/sensors/sensor_kinect_v2.xacro 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/sensors/sensor_hokuyo_laser.xacro 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/sensors/sensor_velodyne_vlp16.xacro 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/sensors/sensor_imu.xacro 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/urdf/simple_sensors.xacro 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage0_heightmap.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/riseholme_empty.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_paper_2.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/riseholme.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage3.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage4_small.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/riseholme_digital_twin.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_small_s1_coarse.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_1.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_paper_4.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage4.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_paper_1.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage0_small.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage1.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage0.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/riseholme_ncnr.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_paper_3.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_small.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_small_s4_coarse.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_stage2.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_actor.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_small_s2_coarse.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_small_s0_coarse.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/cmp9767m_2.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/worlds/vineyard_small_s3_coarse.world 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps/cropped.yaml 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps/cropped.pgm 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps/riseholme 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps/riseholme/sim_riseholme_empty.yaml 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps/riseholme/sim_riseholme_empty.pgm 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/maps/riseholme.yaml 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/rviz 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/rviz/two_robots.rviz 10:36:11 -- Installing: /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/rviz/vineyard_demo.rviz 10:36:11 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu' 10:36:11 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:36:11 dh_install -O-v -O--buildsystem=cmake 10:36:11 install -d debian/.debhelper/generated/ros-melodic-bacchus-gazebo 10:36:11 dh_installdocs -O-v -O--buildsystem=cmake 10:36:12 install -d debian/ros-melodic-bacchus-gazebo/usr/share/doc/ros-melodic-bacchus-gazebo 10:36:12 dh_installchangelogs -O-v -O--buildsystem=cmake 10:36:12 install -p -m0644 debian/changelog debian/ros-melodic-bacchus-gazebo/usr/share/doc/ros-melodic-bacchus-gazebo/changelog.Debian 10:36:12 dh_installexamples -O-v -O--buildsystem=cmake 10:36:12 dh_installman -O-v -O--buildsystem=cmake 10:36:13 dh_installcatalogs -O-v -O--buildsystem=cmake 10:36:13 dh_installcron -O-v -O--buildsystem=cmake 10:36:13 dh_installdebconf -O-v -O--buildsystem=cmake 10:36:13 install -d debian/ros-melodic-bacchus-gazebo/DEBIAN 10:36:13 dh_installemacsen -O-v -O--buildsystem=cmake 10:36:13 dh_installifupdown -O-v -O--buildsystem=cmake 10:36:13 dh_installinfo -O-v -O--buildsystem=cmake 10:36:13 dh_installinit -O-v -O--buildsystem=cmake 10:36:13 dh_installmenu -O-v -O--buildsystem=cmake 10:36:13 dh_installmime -O-v -O--buildsystem=cmake 10:36:14 dh_installmodules -O-v -O--buildsystem=cmake 10:36:14 dh_installlogcheck -O-v -O--buildsystem=cmake 10:36:14 dh_installlogrotate -O-v -O--buildsystem=cmake 10:36:14 dh_installpam -O-v -O--buildsystem=cmake 10:36:14 dh_installppp -O-v -O--buildsystem=cmake 10:36:14 dh_installudev -O-v -O--buildsystem=cmake 10:36:14 dh_installgsettings -O-v -O--buildsystem=cmake 10:36:14 dh_bugfiles -O-v -O--buildsystem=cmake 10:36:14 dh_ucf -O-v -O--buildsystem=cmake 10:36:14 dh_lintian -O-v -O--buildsystem=cmake 10:36:14 dh_gconf -O-v -O--buildsystem=cmake 10:36:14 dh_icons -O-v -O--buildsystem=cmake 10:36:14 dh_perl -O-v -O--buildsystem=cmake 10:36:14 dh_usrlocal -O-v -O--buildsystem=cmake 10:36:14 dh_link -O-v -O--buildsystem=cmake 10:36:15 dh_installwm -O-v -O--buildsystem=cmake 10:36:15 dh_installxfonts -O-v -O--buildsystem=cmake 10:36:15 dh_strip_nondeterminism -O-v -O--buildsystem=cmake 10:36:16 Using 1634463278 as canonical time 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_1/materials/textures/simple.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures/simple.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures/realeasy.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_cropweed/materials/textures/realhard.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_1/materials/textures/realeasy_bend_1.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_bend_2/materials/textures/realeasy_bend_2.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_3/materials/textures/realhard.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_1/materials/textures/ground.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_crop_2/materials/textures/realeasy.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_2/materials/textures/ground.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/grass.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/ground.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_ground_3/materials/textures/dirt.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_4.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_1.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_3.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/cmp9767m_plant_textures/materials/textures/texture_2.png using File::StripNondeterminism::handlers::png 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_riseholme/meshes/heightmap.zip using File::StripNondeterminism::handlers::zip 10:36:16 Normalizing debian/ros-melodic-bacchus-gazebo/opt/ros/melodic/share/bacchus_gazebo/models/heightmap_realistic/meshes/heightmap.zip using File::StripNondeterminism::handlers::zip 10:36:16 dh_compress -O-v -O--buildsystem=cmake 10:36:16 cd debian/ros-melodic-bacchus-gazebo 10:36:16 chmod a-x usr/share/doc/ros-melodic-bacchus-gazebo/changelog.Debian 10:36:16 gzip -9nf usr/share/doc/ros-melodic-bacchus-gazebo/changelog.Debian 10:36:16 cd '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:36:16 dh_fixperms -O-v -O--buildsystem=cmake 10:36:16 find debian/ros-melodic-bacchus-gazebo -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 10:36:16 find debian/ros-melodic-bacchus-gazebo ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s 10:36:16 find debian/ros-melodic-bacchus-gazebo/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-bacchus-gazebo/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 10:36:16 find debian/ros-melodic-bacchus-gazebo/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 10:36:16 find debian/ros-melodic-bacchus-gazebo -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 10:36:16 dh_missing -O-v -O--buildsystem=cmake 10:36:17 dh_strip -O-v -O--buildsystem=cmake 10:36:17 dh_makeshlibs -O-v -O--buildsystem=cmake 10:36:17 rm -f debian/ros-melodic-bacchus-gazebo/DEBIAN/shlibs 10:36:17 debian/rules override_dh_shlibdeps 10:36:17 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:36:17 # In case we're installing to a non-standard location, look for a setup.sh 10:36:17 # in the install tree that was dropped by catkin, and source it. It will 10:36:17 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 10:36:17 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 10:36:17 dh_shlibdeps -l/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian/ros-melodic-bacchus-gazebo//opt/ros/melodic/lib/ 10:36:17 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2' 10:36:17 dh_installdeb -O-v -O--buildsystem=cmake 10:36:18 dh_gencontrol -O-v -O--buildsystem=cmake 10:36:18 echo misc:Depends= >> debian/ros-melodic-bacchus-gazebo.substvars 10:36:18 echo misc:Pre-Depends= >> debian/ros-melodic-bacchus-gazebo.substvars 10:36:18 dpkg-gencontrol -pros-melodic-bacchus-gazebo -ldebian/changelog -Tdebian/ros-melodic-bacchus-gazebo.substvars -Pdebian/ros-melodic-bacchus-gazebo -UMulti-Arch 10:36:18 dpkg-gencontrol: warning: Depends field of package ros-melodic-bacchus-gazebo: unknown substitution variable ${shlibs:Depends} 10:36:18 chmod 0644 -- debian/ros-melodic-bacchus-gazebo/DEBIAN/control 10:36:18 chown 0:0 -- debian/ros-melodic-bacchus-gazebo/DEBIAN/control 10:36:18 dh_md5sums -O-v -O--buildsystem=cmake 10:36:18 (cd debian/ros-melodic-bacchus-gazebo >/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 10:36:22 chmod 0644 -- debian/ros-melodic-bacchus-gazebo/DEBIAN/md5sums 10:36:22 chown 0:0 -- debian/ros-melodic-bacchus-gazebo/DEBIAN/md5sums 10:36:22 dh_builddeb -O-v -O--buildsystem=cmake 10:36:22 dpkg-deb --build debian/ros-melodic-bacchus-gazebo .. 10:36:22 dpkg-deb: building package 'ros-melodic-bacchus-gazebo' in '../ros-melodic-bacchus-gazebo_0.3.2-1bionic.20211017.093438_amd64.deb'. 10:45:05 dpkg-genbuildinfo --build=binary 10:45:12 dpkg-genchanges --build=binary >../ros-melodic-bacchus-gazebo_0.3.2-1bionic.20211017.093438_amd64.changes 10:45:17 dpkg-genchanges: info: binary-only upload (no source code included) 10:45:17 dpkg-source --after-build ros-melodic-bacchus-gazebo-0.3.2 10:45:17 dpkg-source: info: using options from ros-melodic-bacchus-gazebo-0.3.2/debian/source/options: --auto-commit 10:45:17 dpkg-buildpackage: info: binary-only upload (no source included) 10:45:17 I: Successfully built in /tmp/binarydeb/ros-melodic-bacchus-gazebo-0.3.2 10:45:17 # END SUBSECTION
10:45:18 + echo # END SECTION 10:45:18 # END SECTION
10:45:18 [Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2186140013386605812.sh 10:45:18 + [ false = false ] 10:45:18 + echo # BEGIN SECTION: Clean up to save disk space on agents
4. Clean up to save disk space on agents

Hide Details

10:45:18 # BEGIN SECTION: Clean up to save disk space on agents 10:45:18 + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__bacchus_gazebo__ubuntu_bionic_amd64__binary/binarydeb 10:45:18 + rm -fr binarydeb/ros-melodic-bacchus-gazebo-0.3.2/CHANGELOG.rst binarydeb/ros-melodic-bacchus-gazebo-0.3.2/CMakeLists.txt binarydeb/ros-melodic-bacchus-gazebo-0.3.2/config binarydeb/ros-melodic-bacchus-gazebo-0.3.2/debian binarydeb/ros-melodic-bacchus-gazebo-0.3.2/env_hooks binarydeb/ros-melodic-bacchus-gazebo-0.3.2/include binarydeb/ros-melodic-bacchus-gazebo-0.3.2/launch binarydeb/ros-melodic-bacchus-gazebo-0.3.2/maps binarydeb/ros-melodic-bacchus-gazebo-0.3.2/models binarydeb/ros-melodic-bacchus-gazebo-0.3.2/obj-x86_64-linux-gnu binarydeb/ros-melodic-bacchus-gazebo-0.3.2/package.xml binarydeb/ros-melodic-bacchus-gazebo-0.3.2/rviz binarydeb/ros-melodic-bacchus-gazebo-0.3.2/src binarydeb/ros-melodic-bacchus-gazebo-0.3.2/tests binarydeb/ros-melodic-bacchus-gazebo-0.3.2/urdf binarydeb/ros-melodic-bacchus-gazebo-0.3.2/worlds 10:45:19 + echo # END SECTION 10:45:19 # END SECTION
10:45:19 SSH: Connecting from host [lcas-buildfarm-slave-2] 10:45:19 SSH: Connecting with configuration [repo] ... 10:45:28 SSH: Disconnecting configuration [repo] ... 10:45:28 SSH: Transferred 2 file(s) 10:45:28 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 10:45:28 Waiting for the completion of Mrel_import-package 10:45:28 Mrel_import-package #1005 started. 10:45:48 Mrel_import-package #1005 completed. Result was SUCCESS 10:45:48 $ ssh-agent -k 10:45:48 unset SSH_AUTH_SOCK; 10:45:48 unset SSH_AGENT_PID; 10:45:48 echo Agent pid 30332 killed; 10:45:48 [ssh-agent] Stopped. 10:45:48 [description-setter] Description set: 0.3.2-1bionic.20211017.093438 10:45:48 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 10:45:48 Triggering a new build of Mbin_uB64__uol_cmp9767m_base__ubuntu_bionic_amd64__binary 10:45:48 Finished: SUCCESS