diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml new file mode 100644 index 0000000..8cf50fd --- /dev/null +++ b/.github/workflows/gh-pages.yaml @@ -0,0 +1,60 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: [$default-branch] + + pull_request: + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + container: + image: ubuntu:noble + steps: + - name: Setup ROS + uses: ros-tooling/setup-ros@v0.7 + with: + required-ros-distributions: jazzy + + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: 'recursive' + + - name: Generate Documentation + run: ./make_docs.sh + shell: bash + + - name: Setup Pages + uses: actions/configure-pages@v5 + + - name: Upload Pages Artifact + uses: actions/upload-pages-artifact@v3 + with: + path: 'docs_output/' + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..15622b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# ros build output +build +install +log + +# documentation +cross_reference +docs_build +docs_output + +# python env +venv/ + +# python caches +*.pyc +**/__pycache__/* + +# ide +.vscode/* +*.iml +*.swp +.project +.pydevproject +.DS_Store +.idea +# except recommended extensions +!.vscode/extensions.json +!.vscode/settings.json + +# potential clang excludes +compile_commands.json +.cache diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..f5f67ef --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,8 @@ +{ + "recommendations": [ + "ms-iot.vscode-ros", + "ms-vscode.cpptools-extension-pack", + "ms-python.python", + "llvm-vs-code-extensions.vscode-clangd" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..af3be5f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "ros.distro": "jazzy", + "python.autoComplete.extraPaths": [ + "${workspaceFolder}/install/robot_sim_interfaces/lib/python3.12/site-packages", + "/opt/ros/jazzy/lib/python3.12/site-packages" + ], + "python.analysis.extraPaths": [ + "${workspaceFolder}/install/robot_sim_interfaces/lib/python3.12/site-packages", + "/opt/ros/jazzy/lib/python3.12/site-packages" + ], + "flake8.args": [ + "--config=${workspaceFolder}/src/robot_sim_gui/test/flake8.ini" + ], + "cmake.ignoreCMakeListsMissing": true +} diff --git a/README.md b/README.md index 28e2d00..1361b4b 100644 --- a/README.md +++ b/README.md @@ -1 +1,21 @@ -# WRover_Playground_ROS2 \ No newline at end of file +# WRover_Playground_ROS2 + +## TODO Instructions for setting up virtual machine + +## Playground setup instructions + +1. Clone the git repository + +2. Run `colcon build` in the `WRover_Playground_ROS2` folder + +3. Run `source install/setup.bash`. This needs to be run in every new terminal. + +4. Launch the playground: `ros2 launch robot_sim_gui gui_launch.py` + +To test the playground, run +``` +ros2 topic pub /robot/drive_power robot_sim_interfaces/msg/DrivePower "left_power: 0.5 +right_power: 0.5" +``` + +The robot should begin driving forwards. diff --git a/WRPlayTemp/build/.built_by b/WRPlayTemp/build/.built_by deleted file mode 100644 index 06e74ac..0000000 --- a/WRPlayTemp/build/.built_by +++ /dev/null @@ -1 +0,0 @@ -colcon diff --git a/WRPlayTemp/build/COLCON_IGNORE b/WRPlayTemp/build/COLCON_IGNORE deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO deleted file mode 100644 index 9a6ec1c..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO +++ /dev/null @@ -1,8 +0,0 @@ -Metadata-Version: 2.1 -Name: WRover-Mock -Version: 0.0.0 -Summary: Sets up mock rover -Maintainer: Wisconsin Robotics -Maintainer-email: wisconsinrobotics@cae.wisc.edu -License: Apache-2.0 -License-File: LICENSE diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt deleted file mode 100644 index 98d2c28..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt +++ /dev/null @@ -1,18 +0,0 @@ -LICENSE -package.xml -setup.cfg -setup.py -../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt -../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -../../build/WRover_Mock/WRover_Mock.egg-info/zip-safe -WRover_Mock/AbstractRobot.py -WRover_Mock/Robot.py -WRover_Mock/__init__.py -resource/WRover_Mock -test/test_copyright.py -test/test_flake8.py -test/test_pep257.py \ No newline at end of file diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt deleted file mode 100644 index 8b13789..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt deleted file mode 100644 index 7e0ff0d..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt +++ /dev/null @@ -1,2 +0,0 @@ -[console_scripts] -Robot = WRover_Mock.Robot:main diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/requires.txt b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/requires.txt deleted file mode 100644 index 49fe098..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/requires.txt +++ /dev/null @@ -1 +0,0 @@ -setuptools diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/top_level.txt b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/top_level.txt deleted file mode 100644 index e9be894..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -WRover_Mock diff --git a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/zip-safe b/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/zip-safe deleted file mode 100644 index 8b13789..0000000 --- a/WRPlayTemp/build/WRover_Mock/WRover_Mock.egg-info/zip-safe +++ /dev/null @@ -1 +0,0 @@ - diff --git a/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py b/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py deleted file mode 100644 index 22254cb..0000000 --- a/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py +++ /dev/null @@ -1,88 +0,0 @@ -print('hello world') - - -from ast import Num -import math -from tokenize import Number -from std_msgs.msg import Float64 - - -class Robot: - - def __init__(self, - wheelBase, - maxVelocity, - acceleration, - startX = 0.0, - startY = 0.0, - startTheta = 0.0 - ) -> None: - - self.wheelBase = wheelBase - self.maxVelocity = maxVelocity - self.acceleration = acceleration - - self.x = startX - self.y = startY - self.theta = startTheta - - self.velocity = 0.0 - self.dtheta = 0.0 - - self.leftWheel = 0.0 - self.rightWheel = 0.0 - self.dt = 0.05 - - self.leftDist = 0.0 - self.rightDist = 0.0 - - def coerceIn(self, val, bot, top) -> Number: return max(min(val, top), bot) - - def setLeft(self, left): - self.leftWheel = self.coerceIn(left, -1.0, 1.0) - def setRight(self, right): - self.rightWheel = self.coerceIn(right, -1.0, 1.0) - - def update(self): - targetVelocity = (self.leftWheel + self.rightWheel) / 2 * self.maxVelocity - dtheta = 0.0 - - if(self.rightWheel == -self.leftWheel): - dtheta = self.leftWheel * self.maxVelocity / self.wheelBase * self.dt - elif(self.leftWheel != self.rightWheel): - r = self.wheelBase * (self.leftWheel + self.rightWheel) / 2 / abs(self.leftWheel - self.rightWheel) - dist = targetVelocity * self.dt - h = math.sqrt(r*r - dist*dist/4) - dtheta = 2 * math.atan(dist/2/h) * (1 if self.leftWheel > self.rightWheel else -1) - - self.theta = (self.theta + dtheta) % (math.pi * 2) - - if self.acceleration > abs(targetVelocity - self.velocity): - self.velocity = targetVelocity - else: - self.velocity += self.acceleration if targetVelocity > self.velocity else -self.acceleration - - self.velocity = self.coerceIn(self.velocity, -self.maxVelocity, self.maxVelocity) - - self.x += math.sin(self.theta) * self.velocity * self.dt - self.y += math.cos(self.theta) * self.velocity * self.dt - - self.leftDist += self.velocity * self.dt - self.rightDist += self.velocity * self.dt - - def getLeftDistance(self) -> Float64: - msg = Float64() - msg.data = self.leftDist - return msg - def getRightDistance(self) -> Float64: - msg = Float64() - msg.data = self.rightDist - return msg - def getHeading(self) -> Float64: - msg = Float64() - msg.data = self.theta - return msg - def getHeadingInDegrees(self) -> Float64: - msg = Float64() - msg.data = self.theta / math.pi * 180 - return msg diff --git a/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py b/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py deleted file mode 100644 index c23ab6b..0000000 --- a/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py +++ /dev/null @@ -1,72 +0,0 @@ - -import rclpy, std_msgs, geometry_msgs -from rclpy.node import Node -from WRover_Mock.AbstractRobot import Robot -from geometry_msgs.msg import Pose2D -from std_msgs.msg import Float64 - - -class Rover(Node): - - def __init__(self): - super().__init__('rover') - - #setting up subscribers - self.left_subscriber = self.create_subscription( - Float64, - 'rover/cmd/left', - self.set_left, - 10) - self.right_subscriber = self.create_subscription( - Float64, - 'rover/cmd/right', - self.set_right, - 10) - - #Setting up Publishers - self.left_enc_publisher = self.create_publisher( Float64,'rover/enc/left', 10) - self.right_enc_publisher = self.create_publisher( Float64,'rover/enc/left', 10) - self.gyro_publisher = self.create_publisher( Float64, 'rover/gyro', 10) - self.pose_publisher = self.create_publisher(Pose2D,'rover/pose', 10) # top secret - do not subscribe! - - #setting up timer to publish.timer_call - timer_period = 1/hz # seconds (executes every .05 seconds if hz is 20) - self.timer = self.create_timer(timer_period, self.timer_callback) - - def timer_callback(self): - rover.update() - self.left_enc_publisher.publish((rover.getLeftDistance())) - self.right_enc_publisher.publish((rover.getRightDistance())) - self.gyro_publisher.publish((rover.getHeading())) - - pose = Pose2D() - pose.x = rover.x - pose.y = rover.y - pose.theta = rover.theta - self.pose_publisher.publish(pose) - - def set_left(self, msg): rover.setLeft(msg.data) - - def set_right(self, msg): rover.setRight(msg.data) - -def main(args = None): - rclpy.init(args=args) - - rover = Rover() - - rclpy.spin(rover) - - #Kill program after ending - rover.destroy_node() - rclpy.shutdown() - -hz = 20 -rover = Robot( - wheelBase = 50, - maxVelocity = 1000/hz, - acceleration = 10000, -) - - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/WRPlayTemp/build/WRover_Mock/colcon_build.rc b/WRPlayTemp/build/WRover_Mock/colcon_build.rc deleted file mode 100644 index 573541a..0000000 --- a/WRPlayTemp/build/WRover_Mock/colcon_build.rc +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/WRPlayTemp/build/WRover_Mock/colcon_command_prefix_setup_py.sh b/WRPlayTemp/build/WRover_Mock/colcon_command_prefix_setup_py.sh deleted file mode 100644 index f9867d5..0000000 --- a/WRPlayTemp/build/WRover_Mock/colcon_command_prefix_setup_py.sh +++ /dev/null @@ -1 +0,0 @@ -# generated from colcon_core/shell/template/command_prefix.sh.em diff --git a/WRPlayTemp/build/WRover_Mock/colcon_command_prefix_setup_py.sh.env b/WRPlayTemp/build/WRover_Mock/colcon_command_prefix_setup_py.sh.env deleted file mode 100644 index 8a83184..0000000 --- a/WRPlayTemp/build/WRover_Mock/colcon_command_prefix_setup_py.sh.env +++ /dev/null @@ -1,63 +0,0 @@ -AMENT_PREFIX_PATH=/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format -CMAKE_PREFIX_PATH=/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp -COLCON=1 -COLCON_PREFIX_PATH=/home/balabalu/ros2_jazzy/install -COLORTERM=truecolor -DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus -DEBUGINFOD_URLS=https://debuginfod.ubuntu.com -DESKTOP_SESSION=ubuntu -DISPLAY=:0 -GDMSESSION=ubuntu -GNOME_DESKTOP_SESSION_ID=this-is-deprecated -GNOME_KEYRING_CONTROL=/run/user/1000/keyring -GNOME_SETUP_DISPLAY=:1 -GNOME_SHELL_SESSION_MODE=ubuntu -GNOME_TERMINAL_SCREEN=/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47 -GNOME_TERMINAL_SERVICE=:1.114 -GSM_SKIP_SSH_AGENT_WORKAROUND=true -GTK_MODULES=gail:atk-bridge -HOME=/home/balabalu -IM_CONFIG_PHASE=1 -LANG=en_US.UTF-8 -LC_ALL=en_US.UTF-8 -LD_LIBRARY_PATH=/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib -LESSCLOSE=/usr/bin/lesspipe %s %s -LESSOPEN=| /usr/bin/lesspipe %s -LOGNAME=balabalu -LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90: -MEMORY_PRESSURE_WATCH=/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure -MEMORY_PRESSURE_WRITE=c29tZSAyMDAwMDAgMjAwMDAwMAA= -OLDPWD=/home/balabalu/workspace -PATH=/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin -PKG_CONFIG_PATH=/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig -PWD=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock -PYTHONPATH=/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages -QT_ACCESSIBILITY=1 -QT_IM_MODULE=ibus -ROS_AUTOMATIC_DISCOVERY_RANGE=SUBNET -ROS_DISTRO=jazzy -ROS_DOMAIN_ID=25 -ROS_PYTHON_VERSION=3 -ROS_VERSION=2 -SESSION_MANAGER=local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966 -SHELL=/bin/bash -SHLVL=1 -SSH_AUTH_SOCK=/run/user/1000/keyring/ssh -SYSTEMD_EXEC_PID=2222 -TERM=xterm-256color -USER=balabalu -USERNAME=balabalu -VTE_VERSION=7600 -WAYLAND_DISPLAY=wayland-0 -XAUTHORITY=/run/user/1000/.mutter-Xwaylandauth.3FW6P2 -XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg -XDG_CURRENT_DESKTOP=ubuntu:GNOME -XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop -XDG_MENU_PREFIX=gnome- -XDG_RUNTIME_DIR=/run/user/1000 -XDG_SESSION_CLASS=user -XDG_SESSION_DESKTOP=ubuntu -XDG_SESSION_TYPE=wayland -XMODIFIERS=@im=ibus -_=/usr/bin/colcon -_colcon_cd_root=/opt/ros/jazzy/ diff --git a/WRPlayTemp/build/WRover_Mock/install.log b/WRPlayTemp/build/WRover_Mock/install.log deleted file mode 100644 index 668f2ff..0000000 --- a/WRPlayTemp/build/WRover_Mock/install.log +++ /dev/null @@ -1,16 +0,0 @@ -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/AbstractRobot.cpython-312.pyc -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/Robot.cpython-312.pyc -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/__init__.cpython-312.pyc -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages/WRover_Mock -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.xml -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/top_level.txt -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/entry_points.txt -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/SOURCES.txt -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/PKG-INFO -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/zip-safe -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/dependency_links.txt -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/requires.txt -/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock/Robot diff --git a/WRPlayTemp/build/WRover_Mock/prefix_override/__pycache__/sitecustomize.cpython-312.pyc b/WRPlayTemp/build/WRover_Mock/prefix_override/__pycache__/sitecustomize.cpython-312.pyc deleted file mode 100644 index 69ea4b3..0000000 Binary files a/WRPlayTemp/build/WRover_Mock/prefix_override/__pycache__/sitecustomize.cpython-312.pyc and /dev/null differ diff --git a/WRPlayTemp/build/WRover_Mock/prefix_override/sitecustomize.py b/WRPlayTemp/build/WRover_Mock/prefix_override/sitecustomize.py deleted file mode 100644 index 0c323d4..0000000 --- a/WRPlayTemp/build/WRover_Mock/prefix_override/sitecustomize.py +++ /dev/null @@ -1,3 +0,0 @@ -import sys -sys.real_prefix = sys.prefix -sys.prefix = sys.exec_prefix = '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' diff --git a/WRPlayTemp/build/wrover_mock/AMENT_IGNORE b/WRPlayTemp/build/wrover_mock/AMENT_IGNORE deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/build/wrover_mock/CMakeCache.txt b/WRPlayTemp/build/wrover_mock/CMakeCache.txt deleted file mode 100644 index 5238021..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeCache.txt +++ /dev/null @@ -1,499 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Generate environment files in the CMAKE_INSTALL_PREFIX -AMENT_CMAKE_ENVIRONMENT_GENERATION:BOOL=OFF - -//Generate environment files in the package share folder -AMENT_CMAKE_ENVIRONMENT_PACKAGE_GENERATION:BOOL=ON - -//Generate marker file containing the parent prefix path -AMENT_CMAKE_ENVIRONMENT_PARENT_PREFIX_PATH_GENERATION:BOOL=ON - -//Replace the CMake install command with a custom implementation -// using symlinks instead of copying resources -AMENT_CMAKE_SYMLINK_INSTALL:BOOL=OFF - -//Generate an uninstall target to revert the effects of the install -// step -AMENT_CMAKE_UNINSTALL_TARGET:BOOL=ON - -//The path where test results are generated -AMENT_TEST_RESULTS_DIR:PATH=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/test_results - -//Build the testing tree. -BUILD_TESTING:BOOL=ON - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/pkgRedirects - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=wrover_mock - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Name of the computer/site where compile is being run -SITE:STRING=balabalu-VirtualBox - -//The directory containing a CMake configuration file for ament_cmake. -ament_cmake_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake - -//The directory containing a CMake configuration file for ament_cmake_core. -ament_cmake_core_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake - -//The directory containing a CMake configuration file for ament_cmake_cppcheck. -ament_cmake_cppcheck_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck/share/ament_cmake_cppcheck/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_definitions. -ament_cmake_export_definitions_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions/share/ament_cmake_export_definitions/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_dependencies. -ament_cmake_export_dependencies_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies/share/ament_cmake_export_dependencies/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_include_directories. -ament_cmake_export_include_directories_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories/share/ament_cmake_export_include_directories/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_interfaces. -ament_cmake_export_interfaces_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces/share/ament_cmake_export_interfaces/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_libraries. -ament_cmake_export_libraries_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries/share/ament_cmake_export_libraries/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_link_flags. -ament_cmake_export_link_flags_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags/share/ament_cmake_export_link_flags/cmake - -//The directory containing a CMake configuration file for ament_cmake_export_targets. -ament_cmake_export_targets_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets/share/ament_cmake_export_targets/cmake - -//The directory containing a CMake configuration file for ament_cmake_flake8. -ament_cmake_flake8_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_flake8/share/ament_cmake_flake8/cmake - -//The directory containing a CMake configuration file for ament_cmake_gen_version_h. -ament_cmake_gen_version_h_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h/share/ament_cmake_gen_version_h/cmake - -//The directory containing a CMake configuration file for ament_cmake_include_directories. -ament_cmake_include_directories_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories/share/ament_cmake_include_directories/cmake - -//The directory containing a CMake configuration file for ament_cmake_libraries. -ament_cmake_libraries_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_libraries/share/ament_cmake_libraries/cmake - -//The directory containing a CMake configuration file for ament_cmake_lint_cmake. -ament_cmake_lint_cmake_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake - -//The directory containing a CMake configuration file for ament_cmake_pep257. -ament_cmake_pep257_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_pep257/share/ament_cmake_pep257/cmake - -//The directory containing a CMake configuration file for ament_cmake_python. -ament_cmake_python_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake - -//The directory containing a CMake configuration file for ament_cmake_target_dependencies. -ament_cmake_target_dependencies_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies/share/ament_cmake_target_dependencies/cmake - -//The directory containing a CMake configuration file for ament_cmake_test. -ament_cmake_test_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake - -//The directory containing a CMake configuration file for ament_cmake_uncrustify. -ament_cmake_uncrustify_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify/share/ament_cmake_uncrustify/cmake - -//The directory containing a CMake configuration file for ament_cmake_version. -ament_cmake_version_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_version/share/ament_cmake_version/cmake - -//The directory containing a CMake configuration file for ament_cmake_xmllint. -ament_cmake_xmllint_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake - -//The directory containing a CMake configuration file for ament_lint_auto. -ament_lint_auto_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake - -//Path to a program. -ament_lint_cmake_BIN:FILEPATH=/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin/ament_lint_cmake - -//The directory containing a CMake configuration file for ament_lint_common. -ament_lint_common_DIR:PATH=/home/balabalu/ros2_jazzy/install/ament_lint_common/share/ament_lint_common/cmake - -//Path to a program. -ament_xmllint_BIN:FILEPATH=/home/balabalu/ros2_jazzy/install/ament_xmllint/bin/ament_xmllint - -//Value Computed by CMake -wrover_mock_BINARY_DIR:STATIC=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock - -//Value Computed by CMake -wrover_mock_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -wrover_mock_SOURCE_DIR:STATIC=/home/balabalu/workspace/WRPlayTemp/src/wrover_mock - -//Path to a program. -xmllint_BIN:FILEPATH=/usr/bin/xmllint - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/balabalu/workspace/WRPlayTemp/src/wrover_mock -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding Python3 -FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/usr/bin/python3][cfound components: Interpreter ][v3.12.3()] -//linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE -//Compiler reason failure -_Python3_Compiler_REASON_FAILURE:INTERNAL= -//Development reason failure -_Python3_Development_REASON_FAILURE:INTERNAL= -//Path to a program. -_Python3_EXECUTABLE:INTERNAL=/usr/bin/python3 -//Python3 Properties -_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;3;64;32;;cpython-312-x86_64-linux-gnu;abi3;/usr/lib/python3.12;/usr/lib/python3.12;/usr/local/lib/python3.12/dist-packages;/usr/local/lib/python3.12/dist-packages -_Python3_INTERPRETER_SIGNATURE:INTERNAL=4c8bfa8951e99fa32e4000a94f8c04a2 -//NumPy reason failure -_Python3_NumPy_REASON_FAILURE:INTERNAL= - diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeCCompiler.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeCCompiler.cmake deleted file mode 100644 index b11488f..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeCCompiler.cmake +++ /dev/null @@ -1,74 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "13.2.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-13") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake deleted file mode 100644 index 3ee6cf0..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,85 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "13.2.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-13") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 7bf0609..0000000 Binary files a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 3fdc408..0000000 Binary files a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeSystem.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeSystem.cmake deleted file mode 100644 index aebbd6a..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.8.0-35-generic") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-35-generic") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-6.8.0-35-generic") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "6.8.0-35-generic") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 0a0ec9b..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,880 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif __STDC_VERSION__ > 201710L -# define C_VERSION "23" -#elif __STDC_VERSION__ >= 201710L -# define C_VERSION "17" -#elif __STDC_VERSION__ >= 201000L -# define C_VERSION "11" -#elif __STDC_VERSION__ >= 199901L -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/a.out b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/a.out deleted file mode 100755 index 8a279ac..0000000 Binary files a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/a.out and /dev/null differ diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 9c9c90e..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,869 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > 202002L - "23" -#elif CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/a.out b/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/a.out deleted file mode 100755 index 4e346b8..0000000 Binary files a/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/a.out and /dev/null differ diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeConfigureLog.yaml b/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index b5dbd69..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,531 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" - - "CMakeLists.txt:2 (project)" - message: | - The system is: Linux - 6.8.0-35-generic - x86_64 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: /usr/bin/cc - Build flags: - Id flags: - - The output was: - 0 - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - - The C compiler identification is GNU, found in: - /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdC/a.out - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /usr/bin/c++ - Build flags: - Id flags: - - The output was: - 0 - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/3.28.3/CompilerIdCXX/a.out - - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK" - binary: "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK" - cmakeVariables: - CMAKE_C_FLAGS: "" - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_c4086/fast - /usr/bin/gmake -f CMakeFiles/cmTC_c4086.dir/build.make CMakeFiles/cmTC_c4086.dir/build - gmake[1]: Entering directory '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK' - Building C object CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o - /usr/bin/cc -v -o CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=/usr/bin/cc - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_c4086.dir/' - /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c4086.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc0JDWDQ.s - GNU C17 (Ubuntu 13.2.0-23ubuntu4) version 13.2.0 (x86_64-linux-gnu) - compiled by GNU C version 13.2.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" - #include "..." search starts here: - #include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/13/include - /usr/local/include - /usr/include/x86_64-linux-gnu - /usr/include - End of search list. - Compiler executable checksum: 35e51c4ef55ea8f6b448d85f0fac5984 - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_c4086.dir/' - as -v --64 -o CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o /tmp/cc0JDWDQ.s - GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.' - Linking C executable cmTC_c4086 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c4086.dir/link.txt --verbose=1 - /usr/bin/cc -v CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o -o cmTC_c4086 - Using built-in specs. - COLLECT_GCC=/usr/bin/cc - COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c4086' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_c4086.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRCF6lm.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_c4086 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c4086' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_c4086.' - gmake[1]: Leaving directory '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] - add: [/usr/local/include] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_c4086/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_c4086.dir/build.make CMakeFiles/cmTC_c4086.dir/build] - ignore line: [gmake[1]: Entering directory '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-OlkzRK'] - ignore line: [Building C object CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_c4086.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c4086.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc0JDWDQ.s] - ignore line: [GNU C17 (Ubuntu 13.2.0-23ubuntu4) version 13.2.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 13.2.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 35e51c4ef55ea8f6b448d85f0fac5984] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_c4086.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o /tmp/cc0JDWDQ.s] - ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_c4086] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c4086.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o -o cmTC_c4086 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c4086' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_c4086.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRCF6lm.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_c4086 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccRCF6lm.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_c4086] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] - arg [CMakeFiles/cmTC_c4086.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD" - binary: "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_cf32a/fast - /usr/bin/gmake -f CMakeFiles/cmTC_cf32a.dir/build.make CMakeFiles/cmTC_cf32a.dir/build - gmake[1]: Entering directory '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD' - Building CXX object CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o - /usr/bin/c++ -v -o CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_cf32a.dir/' - /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_cf32a.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccSgOvQ2.s - GNU C++17 (Ubuntu 13.2.0-23ubuntu4) version 13.2.0 (x86_64-linux-gnu) - compiled by GNU C version 13.2.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13" - ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" - #include "..." search starts here: - #include <...> search starts here: - /usr/include/c++/13 - /usr/include/x86_64-linux-gnu/c++/13 - /usr/include/c++/13/backward - /usr/lib/gcc/x86_64-linux-gnu/13/include - /usr/local/include - /usr/include/x86_64-linux-gnu - /usr/include - End of search list. - Compiler executable checksum: 4e0f319cd9945d8f5a9eeeeec1481ba5 - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_cf32a.dir/' - as -v --64 -o CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccSgOvQ2.s - GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.' - Linking CXX executable cmTC_cf32a - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf32a.dir/link.txt --verbose=1 - /usr/bin/c++ -v CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_cf32a - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_cf32a' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_cf32a.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccf3rGyP.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_cf32a /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_cf32a' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_cf32a.' - gmake[1]: Leaving directory '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/usr/include/c++/13] - add: [/usr/include/x86_64-linux-gnu/c++/13] - add: [/usr/include/c++/13/backward] - add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] - add: [/usr/local/include] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/include/c++/13] ==> [/usr/include/c++/13] - collapse include dir [/usr/include/x86_64-linux-gnu/c++/13] ==> [/usr/include/x86_64-linux-gnu/c++/13] - collapse include dir [/usr/include/c++/13/backward] ==> [/usr/include/c++/13/backward] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_cf32a/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_cf32a.dir/build.make CMakeFiles/cmTC_cf32a.dir/build] - ignore line: [gmake[1]: Entering directory '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeScratch/TryCompile-mcu7nD'] - ignore line: [Building CXX object CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_cf32a.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_cf32a.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccSgOvQ2.s] - ignore line: [GNU C++17 (Ubuntu 13.2.0-23ubuntu4) version 13.2.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 13.2.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/include/c++/13] - ignore line: [ /usr/include/x86_64-linux-gnu/c++/13] - ignore line: [ /usr/include/c++/13/backward] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 4e0f319cd9945d8f5a9eeeeec1481ba5] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_cf32a.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccSgOvQ2.s] - ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_cf32a] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf32a.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_cf32a ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_cf32a' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_cf32a.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccf3rGyP.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_cf32a /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccf3rGyP.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_cf32a] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] - arg [CMakeFiles/cmTC_cf32a.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -... diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeDirectoryInformation.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 26fe74d..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeRuleHashes.txt b/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index c5b46d1..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,2 +0,0 @@ -# Hashes of file build rules. -48cb5487ad090bd63ab5b6f596c94a55 CMakeFiles/wrover_mock_uninstall diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/Makefile.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/Makefile.cmake deleted file mode 100644 index a3ff026..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,308 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/package_level/local_setup.bash.in" - "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/package_level/local_setup.sh.in" - "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/package_level/local_setup.zsh.in" - "/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake/ament_cmakeConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake/ament_cmakeConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_core-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_coreConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_coreConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_environment-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_environment_hooks-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_index-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_package_templates-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_symlink_install-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/ament_cmake_uninstall_target-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/all.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_add_default_options.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_package.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_package_xml.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_register_extension.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/assert_file_exists.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/get_executable_path.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/list_append_unique.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/normalize_path.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/package_xml_2_cmake.py" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/python.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/stamp.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/string_ends_with.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/templates/nameConfig-version.cmake.in" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/templates/nameConfig.cmake.in" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment/ament_cmake_environment_package_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment/ament_generate_environment.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/ament_cmake_environment_hooks_package_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/ament_environment_hooks.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/ament_generate_package_environment.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_cmake_index_package_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_index_get_prefix_path.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_index_get_resource.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_index_get_resources.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_index_has_resource.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_index_register_package.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/index/ament_index_register_resource.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/package_templates/templates_2_cmake.py" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target.cmake.in" - "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target_append_uninstall_code.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck_lint_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck/share/ament_cmake_cppcheck/cmake/ament_cppcheck.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitions-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions/share/ament_cmake_export_definitions/cmake/ament_export_definitions.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies/share/ament_cmake_export_dependencies/cmake/ament_export_dependencies.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directories-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories/share/ament_cmake_export_include_directories/cmake/ament_export_include_directories.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfaces-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces/share/ament_cmake_export_interfaces/cmake/ament_export_interfaces.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries/share/ament_cmake_export_libraries/cmake/ament_cmake_export_libraries-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries/share/ament_cmake_export_libraries/cmake/ament_export_libraries.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries/share/ament_cmake_export_libraries/cmake/ament_export_library_names.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flags-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags/share/ament_cmake_export_link_flags/cmake/ament_export_link_flags.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets/share/ament_cmake_export_targets/cmake/ament_cmake_export_targets-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets/share/ament_cmake_export_targets/cmake/ament_cmake_export_targetsConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets/share/ament_cmake_export_targets/cmake/ament_cmake_export_targetsConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets/share/ament_cmake_export_targets/cmake/ament_export_targets.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_flake8/share/ament_cmake_flake8/cmake/ament_cmake_flake8-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_flake8/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_flake8/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_flake8/share/ament_cmake_flake8/cmake/ament_cmake_flake8_lint_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_flake8/share/ament_cmake_flake8/cmake/ament_flake8.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_h-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_h.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_hConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h/share/ament_cmake_gen_version_h/cmake/ament_cmake_gen_version_hConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h/share/ament_cmake_gen_version_h/cmake/ament_generate_version_header.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories/share/ament_cmake_include_directories/cmake/ament_cmake_include_directories-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories/share/ament_cmake_include_directories/cmake/ament_include_directories_order.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_libraries/share/ament_cmake_libraries/cmake/ament_cmake_libraries-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_libraries/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_libraries/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_libraries/share/ament_cmake_libraries/cmake/ament_libraries_deduplicate.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmakeConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmakeConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_lint_cmake.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_pep257/share/ament_cmake_pep257/cmake/ament_cmake_pep257-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_pep257/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_pep257/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_pep257/share/ament_cmake_pep257/cmake/ament_cmake_pep257_lint_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_pep257/share/ament_cmake_pep257/cmake/ament_pep257.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake/ament_cmake_python-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake/ament_cmake_pythonConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake/ament_cmake_pythonConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake/ament_get_python_install_dir.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake/ament_python_install_module.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_python/share/ament_cmake_python/cmake/ament_python_install_package.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependencies-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies/share/ament_cmake_target_dependencies/cmake/ament_get_recursive_properties.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies/share/ament_cmake_target_dependencies/cmake/ament_target_dependencies.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_add_test.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_add_test_label.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_cmake_test-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_cmake_testConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_cmake_testConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify_lint_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify/share/ament_cmake_uncrustify/cmake/ament_uncrustify.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_version/share/ament_cmake_version/cmake/ament_cmake_version-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_version/share/ament_cmake_version/cmake/ament_cmake_versionConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_version/share/ament_cmake_version/cmake/ament_cmake_versionConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_version/share/ament_cmake_version/cmake/ament_export_development_version_if_higher_than_manifest.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_cmake_xmllintConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_cmake_xmllintConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_xmllint.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_autoConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_autoConfig.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto_find_test_dependencies.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_common/share/ament_lint_common/cmake/ament_cmake_export_dependencies-extras.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_common/share/ament_lint_common/cmake/ament_lint_commonConfig-version.cmake" - "/home/balabalu/ros2_jazzy/install/ament_lint_common/share/ament_lint_common/cmake/ament_lint_commonConfig.cmake" - "CMakeFiles/3.28.3/CMakeCCompiler.cmake" - "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.28.3/CMakeSystem.cmake" - "ament_cmake_core/package.cmake" - "ament_cmake_package_templates/templates.cmake" - "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/CMakeLists.txt" - "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/package.xml" - "/usr/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c" - "/usr/share/cmake-3.28/Modules/CMakeCInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp" - "/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" - "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/DartConfiguration.tcl.in" - "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" - "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake" - "/usr/share/cmake-3.28/Modules/FindPython/Support.cmake" - "/usr/share/cmake-3.28/Modules/FindPython3.cmake" - "/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-Determine-CXX.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" - "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.28.3/CMakeSystem.cmake" - "CMakeFiles/3.28.3/CMakeCCompiler.cmake" - "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.28.3/CMakeCCompiler.cmake" - "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" - "ament_cmake_core/stamps/templates_2_cmake.py.stamp" - "ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake" - "CTestConfiguration.ini" - "ament_cmake_core/stamps/package.xml.stamp" - "ament_cmake_core/stamps/package_xml_2_cmake.py.stamp" - "ament_cmake_core/stamps/ament_prefix_path.sh.stamp" - "ament_cmake_core/stamps/path.sh.stamp" - "ament_cmake_environment_hooks/local_setup.bash" - "ament_cmake_environment_hooks/local_setup.sh" - "ament_cmake_environment_hooks/local_setup.zsh" - "ament_cmake_core/stamps/nameConfig.cmake.in.stamp" - "ament_cmake_core/wrover_mockConfig.cmake" - "ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp" - "ament_cmake_core/wrover_mockConfig-version.cmake" - "ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/wrover_mock" - "ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/wrover_mock" - "ament_cmake_environment_hooks/ament_prefix_path.dsv" - "ament_cmake_environment_hooks/path.dsv" - "ament_cmake_environment_hooks/local_setup.dsv" - "ament_cmake_environment_hooks/package.dsv" - "ament_cmake_index/share/ament_index/resource_index/packages/wrover_mock" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/uninstall.dir/DependInfo.cmake" - "CMakeFiles/wrover_mock_uninstall.dir/DependInfo.cmake" - ) diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/Makefile2 b/WRPlayTemp/build/wrover_mock/CMakeFiles/Makefile2 deleted file mode 100644 index a4ff81a..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/Makefile2 +++ /dev/null @@ -1,139 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/balabalu/workspace/WRPlayTemp/src/wrover_mock - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/balabalu/workspace/WRPlayTemp/build/wrover_mock - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/uninstall.dir/clean -clean: CMakeFiles/wrover_mock_uninstall.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/uninstall.dir - -# All Build rule for target. -CMakeFiles/uninstall.dir/all: CMakeFiles/wrover_mock_uninstall.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles --progress-num= "Built target uninstall" -.PHONY : CMakeFiles/uninstall.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/uninstall.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/uninstall.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles 0 -.PHONY : CMakeFiles/uninstall.dir/rule - -# Convenience name for target. -uninstall: CMakeFiles/uninstall.dir/rule -.PHONY : uninstall - -# clean rule for target. -CMakeFiles/uninstall.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/clean -.PHONY : CMakeFiles/uninstall.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/wrover_mock_uninstall.dir - -# All Build rule for target. -CMakeFiles/wrover_mock_uninstall.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wrover_mock_uninstall.dir/build.make CMakeFiles/wrover_mock_uninstall.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/wrover_mock_uninstall.dir/build.make CMakeFiles/wrover_mock_uninstall.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles --progress-num= "Built target wrover_mock_uninstall" -.PHONY : CMakeFiles/wrover_mock_uninstall.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/wrover_mock_uninstall.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wrover_mock_uninstall.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles 0 -.PHONY : CMakeFiles/wrover_mock_uninstall.dir/rule - -# Convenience name for target. -wrover_mock_uninstall: CMakeFiles/wrover_mock_uninstall.dir/rule -.PHONY : wrover_mock_uninstall - -# clean rule for target. -CMakeFiles/wrover_mock_uninstall.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wrover_mock_uninstall.dir/build.make CMakeFiles/wrover_mock_uninstall.dir/clean -.PHONY : CMakeFiles/wrover_mock_uninstall.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/TargetDirectories.txt b/WRPlayTemp/build/wrover_mock/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index b8a2bdd..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,9 +0,0 @@ -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/test.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/edit_cache.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/rebuild_cache.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/list_install_components.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/install.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/install/local.dir -/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/install/strip.dir diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/cmake.check_cache b/WRPlayTemp/build/wrover_mock/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/progress.marks b/WRPlayTemp/build/wrover_mock/CMakeFiles/progress.marks deleted file mode 100644 index 573541a..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/DependInfo.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/build.make b/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/build.make deleted file mode 100644 index 1eb0f02..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/balabalu/workspace/WRPlayTemp/src/wrover_mock - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/balabalu/workspace/WRPlayTemp/build/wrover_mock - -# Utility rule file for uninstall. - -# Include any custom commands dependencies for this target. -include CMakeFiles/uninstall.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/uninstall.dir/progress.make - -uninstall: CMakeFiles/uninstall.dir/build.make -.PHONY : uninstall - -# Rule to build all files generated by this target. -CMakeFiles/uninstall.dir/build: uninstall -.PHONY : CMakeFiles/uninstall.dir/build - -CMakeFiles/uninstall.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/uninstall.dir/cmake_clean.cmake -.PHONY : CMakeFiles/uninstall.dir/clean - -CMakeFiles/uninstall.dir/depend: - cd /home/balabalu/workspace/WRPlayTemp/build/wrover_mock && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/balabalu/workspace/WRPlayTemp/src/wrover_mock /home/balabalu/workspace/WRPlayTemp/src/wrover_mock /home/balabalu/workspace/WRPlayTemp/build/wrover_mock /home/balabalu/workspace/WRPlayTemp/build/wrover_mock /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/uninstall.dir/depend - diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/cmake_clean.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/cmake_clean.cmake deleted file mode 100644 index 9960e98..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/compiler_depend.make b/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/compiler_depend.make deleted file mode 100644 index 2d74447..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for uninstall. -# This may be replaced when dependencies are built. diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/compiler_depend.ts b/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/compiler_depend.ts deleted file mode 100644 index ef27dcc..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for uninstall. diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/progress.make b/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/uninstall.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/DependInfo.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/build.make b/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/build.make deleted file mode 100644 index cfc00c9..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/build.make +++ /dev/null @@ -1,87 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/balabalu/workspace/WRPlayTemp/src/wrover_mock - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/balabalu/workspace/WRPlayTemp/build/wrover_mock - -# Utility rule file for wrover_mock_uninstall. - -# Include any custom commands dependencies for this target. -include CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/wrover_mock_uninstall.dir/progress.make - -CMakeFiles/wrover_mock_uninstall: - /usr/bin/cmake -P /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake - -wrover_mock_uninstall: CMakeFiles/wrover_mock_uninstall -wrover_mock_uninstall: CMakeFiles/wrover_mock_uninstall.dir/build.make -.PHONY : wrover_mock_uninstall - -# Rule to build all files generated by this target. -CMakeFiles/wrover_mock_uninstall.dir/build: wrover_mock_uninstall -.PHONY : CMakeFiles/wrover_mock_uninstall.dir/build - -CMakeFiles/wrover_mock_uninstall.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/wrover_mock_uninstall.dir/cmake_clean.cmake -.PHONY : CMakeFiles/wrover_mock_uninstall.dir/clean - -CMakeFiles/wrover_mock_uninstall.dir/depend: - cd /home/balabalu/workspace/WRPlayTemp/build/wrover_mock && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/balabalu/workspace/WRPlayTemp/src/wrover_mock /home/balabalu/workspace/WRPlayTemp/src/wrover_mock /home/balabalu/workspace/WRPlayTemp/build/wrover_mock /home/balabalu/workspace/WRPlayTemp/build/wrover_mock /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/wrover_mock_uninstall.dir/depend - diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/cmake_clean.cmake b/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/cmake_clean.cmake deleted file mode 100644 index b8f7c1e..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/wrover_mock_uninstall" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/wrover_mock_uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.make b/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.make deleted file mode 100644 index 352eedc..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for wrover_mock_uninstall. -# This may be replaced when dependencies are built. diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.ts b/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.ts deleted file mode 100644 index 2ae5df6..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for wrover_mock_uninstall. diff --git a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/progress.make b/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/WRPlayTemp/build/wrover_mock/CMakeFiles/wrover_mock_uninstall.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/WRPlayTemp/build/wrover_mock/CTestConfiguration.ini b/WRPlayTemp/build/wrover_mock/CTestConfiguration.ini deleted file mode 100644 index 1d1f913..0000000 --- a/WRPlayTemp/build/wrover_mock/CTestConfiguration.ini +++ /dev/null @@ -1,106 +0,0 @@ -# This file is configured by CMake automatically as DartConfiguration.tcl -# If you choose not to use CMake, this file may be hand configured, by -# filling in the required variables. - - -# Configuration directories and files -SourceDirectory: /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -BuildDirectory: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock - -# Where to place the cost data store -CostDataFile: - -# Site is something like machine.domain, i.e. pragmatic.crd -Site: balabalu-VirtualBox - -# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ -BuildName: - -# Subprojects -LabelsForSubprojects: - -# Submission information -SubmitURL: -SubmitInactivityTimeout: - -# Dashboard start time -NightlyStartTime: - -# Commands for the build/test/submit cycle -ConfigureCommand: "/usr/bin/cmake" "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock" -MakeCommand: -DefaultCTestConfigurationType: - -# version control -UpdateVersionOnly: - -# CVS options -# Default is "-d -P -A" -CVSCommand: -CVSUpdateOptions: - -# Subversion options -SVNCommand: -SVNOptions: -SVNUpdateOptions: - -# Git options -GITCommand: -GITInitSubmodules: -GITUpdateOptions: -GITUpdateCustom: - -# Perforce options -P4Command: -P4Client: -P4Options: -P4UpdateOptions: -P4UpdateCustom: - -# Generic update command -UpdateCommand: -UpdateOptions: -UpdateType: - -# Compiler info -Compiler: /usr/bin/c++ -CompilerVersion: 13.2.0 - -# Dynamic analysis (MemCheck) -PurifyCommand: -ValgrindCommand: -ValgrindCommandOptions: -DrMemoryCommand: -DrMemoryCommandOptions: -CudaSanitizerCommand: -CudaSanitizerCommandOptions: -MemoryCheckType: -MemoryCheckSanitizerOptions: -MemoryCheckCommand: -MemoryCheckCommandOptions: -MemoryCheckSuppressionFile: - -# Coverage -CoverageCommand: -CoverageExtraFlags: - -# Testing options -# TimeOut is the amount of time in seconds to wait for processes -# to complete during testing. After TimeOut seconds, the -# process will be summarily terminated. -# Currently set to 25 minutes -TimeOut: - -# During parallel testing CTest will not start a new test if doing -# so would cause the system load to exceed this value. -TestLoad: - -UseLaunchers: -CurlOptions: -# warning, if you add new options here that have to do with submit, -# you have to update cmCTestSubmitCommand.cxx - -# For CTest submissions that timeout, these options -# specify behavior for retrying the submission -CTestSubmitRetryDelay: -CTestSubmitRetryCount: diff --git a/WRPlayTemp/build/wrover_mock/CTestCustom.cmake b/WRPlayTemp/build/wrover_mock/CTestCustom.cmake deleted file mode 100644 index 14956f3..0000000 --- a/WRPlayTemp/build/wrover_mock/CTestCustom.cmake +++ /dev/null @@ -1,2 +0,0 @@ -set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0) -set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0) diff --git a/WRPlayTemp/build/wrover_mock/CTestTestfile.cmake b/WRPlayTemp/build/wrover_mock/CTestTestfile.cmake deleted file mode 100644 index dd8b4ca..0000000 --- a/WRPlayTemp/build/wrover_mock/CTestTestfile.cmake +++ /dev/null @@ -1,10 +0,0 @@ -# CMake generated Testfile for -# Source directory: /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -# Build directory: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -# -# This file includes the relevant testing commands required for -# testing this directory and lists subdirectories to be tested as well. -add_test(lint_cmake "/usr/bin/python3" "-u" "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/run_test.py" "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/test_results/wrover_mock/lint_cmake.xunit.xml" "--package-name" "wrover_mock" "--output-file" "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_lint_cmake/lint_cmake.txt" "--command" "/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin/ament_lint_cmake" "--xunit-file" "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/test_results/wrover_mock/lint_cmake.xunit.xml") -set_tests_properties(lint_cmake PROPERTIES LABELS "lint_cmake;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock" _BACKTRACE_TRIPLES "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_add_test.cmake;125;add_test;/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_lint_cmake.cmake;47;ament_add_test;/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake;21;ament_lint_cmake;/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake/share/ament_cmake_lint_cmake/cmake/ament_cmake_lint_cmake_lint_hook.cmake;0;;/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/CMakeLists.txt;26;ament_package;/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/CMakeLists.txt;0;") -add_test(xmllint "/usr/bin/python3" "-u" "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/run_test.py" "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/test_results/wrover_mock/xmllint.xunit.xml" "--package-name" "wrover_mock" "--output-file" "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_xmllint/xmllint.txt" "--command" "/home/balabalu/ros2_jazzy/install/ament_xmllint/bin/ament_xmllint" "--xunit-file" "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/test_results/wrover_mock/xmllint.xunit.xml") -set_tests_properties(xmllint PROPERTIES LABELS "xmllint;linter" TIMEOUT "60" WORKING_DIRECTORY "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock" _BACKTRACE_TRIPLES "/home/balabalu/ros2_jazzy/install/ament_cmake_test/share/ament_cmake_test/cmake/ament_add_test.cmake;125;add_test;/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_xmllint.cmake;50;ament_add_test;/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake;18;ament_xmllint;/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint/share/ament_cmake_xmllint/cmake/ament_cmake_xmllint_lint_hook.cmake;0;;/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;21;ament_execute_extensions;/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake/ament_lint_auto_package_hook.cmake;0;;/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake;48;include;/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/core/ament_package.cmake;66;ament_execute_extensions;/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/CMakeLists.txt;26;ament_package;/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/CMakeLists.txt;0;") diff --git a/WRPlayTemp/build/wrover_mock/Makefile b/WRPlayTemp/build/wrover_mock/Makefile deleted file mode 100644 index 75c5491..0000000 --- a/WRPlayTemp/build/wrover_mock/Makefile +++ /dev/null @@ -1,228 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/balabalu/workspace/WRPlayTemp/src/wrover_mock - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/balabalu/workspace/WRPlayTemp/build/wrover_mock - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." - /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /usr/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /usr/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles /home/balabalu/workspace/WRPlayTemp/build/wrover_mock//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/balabalu/workspace/WRPlayTemp/build/wrover_mock/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named uninstall - -# Build rule for target. -uninstall: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 uninstall -.PHONY : uninstall - -# fast build rule for target. -uninstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build -.PHONY : uninstall/fast - -#============================================================================= -# Target rules for targets named wrover_mock_uninstall - -# Build rule for target. -wrover_mock_uninstall: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 wrover_mock_uninstall -.PHONY : wrover_mock_uninstall - -# fast build rule for target. -wrover_mock_uninstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wrover_mock_uninstall.dir/build.make CMakeFiles/wrover_mock_uninstall.dir/build -.PHONY : wrover_mock_uninstall/fast - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... test" - @echo "... uninstall" - @echo "... wrover_mock_uninstall" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/package.cmake b/WRPlayTemp/build/wrover_mock/ament_cmake_core/package.cmake deleted file mode 100644 index 51b8ff1..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/package.cmake +++ /dev/null @@ -1,14 +0,0 @@ -set(_AMENT_PACKAGE_NAME "wrover_mock") -set(wrover_mock_VERSION "0.0.0") -set(wrover_mock_MAINTAINER "balabalu ") -set(wrover_mock_BUILD_DEPENDS ) -set(wrover_mock_BUILDTOOL_DEPENDS "ament_cmake") -set(wrover_mock_BUILD_EXPORT_DEPENDS ) -set(wrover_mock_BUILDTOOL_EXPORT_DEPENDS ) -set(wrover_mock_EXEC_DEPENDS ) -set(wrover_mock_TEST_DEPENDS "ament_lint_auto" "ament_lint_common") -set(wrover_mock_GROUP_DEPENDS ) -set(wrover_mock_MEMBER_OF_GROUPS ) -set(wrover_mock_DEPRECATED "") -set(wrover_mock_EXPORT_TAGS) -list(APPEND wrover_mock_EXPORT_TAGS "ament_cmake") diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/ament_prefix_path.sh.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/ament_prefix_path.sh.stamp deleted file mode 100644 index 02e441b..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/ament_prefix_path.sh.stamp +++ /dev/null @@ -1,4 +0,0 @@ -# copied from -# ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh - -ament_prepend_unique_value AMENT_PREFIX_PATH "$AMENT_CURRENT_PREFIX" diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp deleted file mode 100644 index ee49c9f..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp +++ /dev/null @@ -1,14 +0,0 @@ -# generated from ament/cmake/core/templates/nameConfig-version.cmake.in -set(PACKAGE_VERSION "@PACKAGE_VERSION@") - -set(PACKAGE_VERSION_EXACT False) -set(PACKAGE_VERSION_COMPATIBLE False) - -if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_EXACT True) - set(PACKAGE_VERSION_COMPATIBLE True) -endif() - -if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_COMPATIBLE True) -endif() diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/nameConfig.cmake.in.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/nameConfig.cmake.in.stamp deleted file mode 100644 index 32b72b4..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/nameConfig.cmake.in.stamp +++ /dev/null @@ -1,42 +0,0 @@ -# generated from ament/cmake/core/templates/nameConfig.cmake.in - -# prevent multiple inclusion -if(_@PROJECT_NAME@_CONFIG_INCLUDED) - # ensure to keep the found flag the same - if(NOT DEFINED @PROJECT_NAME@_FOUND) - # explicitly set it to FALSE, otherwise CMake will set it to TRUE - set(@PROJECT_NAME@_FOUND FALSE) - elseif(NOT @PROJECT_NAME@_FOUND) - # use separate condition to avoid uninitialized variable warning - set(@PROJECT_NAME@_FOUND FALSE) - endif() - return() -endif() -set(_@PROJECT_NAME@_CONFIG_INCLUDED TRUE) - -# output package information -if(NOT @PROJECT_NAME@_FIND_QUIETLY) - message(STATUS "Found @PROJECT_NAME@: @PACKAGE_VERSION@ (${@PROJECT_NAME@_DIR})") -endif() - -# warn when using a deprecated package -if(NOT "@PACKAGE_DEPRECATED@" STREQUAL "") - set(_msg "Package '@PROJECT_NAME@' is deprecated") - # append custom deprecation text if available - if(NOT "@PACKAGE_DEPRECATED@" STREQUAL "TRUE") - set(_msg "${_msg} (@PACKAGE_DEPRECATED@)") - endif() - # optionally quiet the deprecation message - if(NOT @PROJECT_NAME@_DEPRECATED_QUIET) - message(DEPRECATION "${_msg}") - endif() -endif() - -# flag package as ament-based to distinguish it after being find_package()-ed -set(@PROJECT_NAME@_FOUND_AMENT_PACKAGE TRUE) - -# include all config extra files -set(_extras "@PACKAGE_CONFIG_EXTRA_FILES@") -foreach(_extra ${_extras}) - include("${@PROJECT_NAME@_DIR}/${_extra}") -endforeach() diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/package.xml.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/package.xml.stamp deleted file mode 100644 index cbdd499..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/package.xml.stamp +++ /dev/null @@ -1,18 +0,0 @@ - - - - wrover_mock - 0.0.0 - TODO: Package description - balabalu - Apache-2.0 - - ament_cmake - - ament_lint_auto - ament_lint_common - - - ament_cmake - - diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/package_xml_2_cmake.py.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/package_xml_2_cmake.py.stamp deleted file mode 100644 index 8be9894..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/package_xml_2_cmake.py.stamp +++ /dev/null @@ -1,150 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright 2014-2015 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import argparse -from collections import OrderedDict -import os -import sys - -from catkin_pkg.package import parse_package_string - - -def main(argv=sys.argv[1:]): - """ - Extract the information from package.xml and make them accessible to CMake. - - Parse the given package.xml file and - print CMake code defining several variables containing the content. - """ - parser = argparse.ArgumentParser( - description='Parse package.xml file and print CMake code defining ' - 'several variables', - ) - parser.add_argument( - 'package_xml', - type=argparse.FileType('r', encoding='utf-8'), - help='The path to a package.xml file', - ) - parser.add_argument( - 'outfile', - nargs='?', - help='The filename where the output should be written to', - ) - args = parser.parse_args(argv) - - try: - package = parse_package_string( - args.package_xml.read(), filename=args.package_xml.name) - except Exception as e: - print("Error parsing '%s':" % args.package_xml.name, file=sys.stderr) - raise e - finally: - args.package_xml.close() - - lines = generate_cmake_code(package) - if args.outfile: - with open(args.outfile, 'w', encoding='utf-8') as f: - for line in lines: - f.write('%s\n' % line) - else: - for line in lines: - print(line) - - -def get_dependency_values(key, depends): - dependencies = [] - - # Filter the dependencies, checking for any condition attributes - dependencies.append((key, ' '.join([ - '"%s"' % str(d) for d in depends - if d.condition is None or d.evaluate_condition(os.environ) - ]))) - - for d in depends: - comparisons = [ - 'version_lt', - 'version_lte', - 'version_eq', - 'version_gte', - 'version_gt'] - for comp in comparisons: - value = getattr(d, comp, None) - if value is not None: - dependencies.append(('%s_%s_%s' % (key, str(d), comp.upper()), - '"%s"' % value)) - return dependencies - - -def generate_cmake_code(package): - """ - Return a list of CMake set() commands containing the manifest information. - - :param package: catkin_pkg.package.Package - :returns: list of str - """ - variables = [] - variables.append(('VERSION', '"%s"' % package.version)) - - variables.append(( - 'MAINTAINER', - '"%s"' % (', '.join([str(m) for m in package.maintainers])))) - - variables.extend(get_dependency_values('BUILD_DEPENDS', - package.build_depends)) - variables.extend(get_dependency_values('BUILDTOOL_DEPENDS', - package.buildtool_depends)) - variables.extend(get_dependency_values('BUILD_EXPORT_DEPENDS', - package.build_export_depends)) - variables.extend(get_dependency_values('BUILDTOOL_EXPORT_DEPENDS', - package.buildtool_export_depends)) - variables.extend(get_dependency_values('EXEC_DEPENDS', - package.exec_depends)) - variables.extend(get_dependency_values('TEST_DEPENDS', - package.test_depends)) - variables.extend(get_dependency_values('GROUP_DEPENDS', - package.group_depends)) - variables.extend(get_dependency_values('MEMBER_OF_GROUPS', - package.member_of_groups)) - - deprecated = [e.content for e in package.exports - if e.tagname == 'deprecated'] - variables.append(('DEPRECATED', - '"%s"' % ((deprecated[0] if deprecated[0] else 'TRUE') - if deprecated - else ''))) - - lines = [] - lines.append('set(_AMENT_PACKAGE_NAME "%s")' % package.name) - for (k, v) in variables: - lines.append('set(%s_%s %s)' % (package.name, k, v)) - - lines.append('set(%s_EXPORT_TAGS)' % package.name) - replaces = OrderedDict() - replaces['${prefix}/'] = '' - replaces['\\'] = '\\\\' # escape backslashes - replaces['"'] = '\\"' # prevent double quotes to end the CMake string - replaces[';'] = '\\;' # prevent semicolons to be interpreted as list separators - for export in package.exports: - export = str(export) - for k, v in replaces.items(): - export = export.replace(k, v) - lines.append('list(APPEND %s_EXPORT_TAGS "%s")' % (package.name, export)) - - return lines - - -if __name__ == '__main__': - main() diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/path.sh.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/path.sh.stamp deleted file mode 100644 index e59b749..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/path.sh.stamp +++ /dev/null @@ -1,5 +0,0 @@ -# copied from ament_cmake_core/cmake/environment_hooks/environment/path.sh - -if [ -d "$AMENT_CURRENT_PREFIX/bin" ]; then - ament_prepend_unique_value PATH "$AMENT_CURRENT_PREFIX/bin" -fi diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/templates_2_cmake.py.stamp b/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/templates_2_cmake.py.stamp deleted file mode 100644 index fb2fb47..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/stamps/templates_2_cmake.py.stamp +++ /dev/null @@ -1,112 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright 2014-2015 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import argparse -import os -import sys - -from ament_package.templates import get_environment_hook_template_path -from ament_package.templates import get_package_level_template_names -from ament_package.templates import get_package_level_template_path -from ament_package.templates import get_prefix_level_template_names -from ament_package.templates import get_prefix_level_template_path - -IS_WINDOWS = os.name == 'nt' - - -def main(argv=sys.argv[1:]): - """ - Extract the information about templates provided by ament_package. - - Call the API provided by ament_package and - print CMake code defining several variables containing information about - the available templates. - """ - parser = argparse.ArgumentParser( - description='Extract information about templates provided by ' - 'ament_package and print CMake code defining several ' - 'variables', - ) - parser.add_argument( - 'outfile', - nargs='?', - help='The filename where the output should be written to', - ) - args = parser.parse_args(argv) - - lines = generate_cmake_code() - if args.outfile: - basepath = os.path.dirname(args.outfile) - if not os.path.exists(basepath): - os.makedirs(basepath) - with open(args.outfile, 'w') as f: - for line in lines: - f.write('%s\n' % line) - else: - for line in lines: - print(line) - - -def generate_cmake_code(): - """ - Return a list of CMake set() commands containing the template information. - - :returns: list of str - """ - variables = [] - - if not IS_WINDOWS: - variables.append(( - 'ENVIRONMENT_HOOK_LIBRARY_PATH', - '"%s"' % get_environment_hook_template_path('library_path.sh'))) - else: - variables.append(('ENVIRONMENT_HOOK_LIBRARY_PATH', '')) - - ext = '.bat.in' if IS_WINDOWS else '.sh.in' - variables.append(( - 'ENVIRONMENT_HOOK_PYTHONPATH', - '"%s"' % get_environment_hook_template_path('pythonpath' + ext))) - - templates = [] - for name in get_package_level_template_names(): - templates.append('"%s"' % get_package_level_template_path(name)) - variables.append(( - 'PACKAGE_LEVEL', - templates)) - - templates = [] - for name in get_prefix_level_template_names(): - templates.append('"%s"' % get_prefix_level_template_path(name)) - variables.append(( - 'PREFIX_LEVEL', - templates)) - - lines = [] - for (k, v) in variables: - if isinstance(v, list): - lines.append('set(ament_cmake_package_templates_%s "")' % k) - for vv in v: - lines.append('list(APPEND ament_cmake_package_templates_%s %s)' - % (k, vv)) - else: - lines.append('set(ament_cmake_package_templates_%s %s)' % (k, v)) - # Ensure backslashes are replaced with forward slashes because CMake cannot - # parse files with backslashes in it. - return [line.replace('\\', '/') for line in lines] - - -if __name__ == '__main__': - main() diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig-version.cmake b/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig-version.cmake deleted file mode 100644 index 7beb732..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig-version.cmake +++ /dev/null @@ -1,14 +0,0 @@ -# generated from ament/cmake/core/templates/nameConfig-version.cmake.in -set(PACKAGE_VERSION "0.0.0") - -set(PACKAGE_VERSION_EXACT False) -set(PACKAGE_VERSION_COMPATIBLE False) - -if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_EXACT True) - set(PACKAGE_VERSION_COMPATIBLE True) -endif() - -if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_COMPATIBLE True) -endif() diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig.cmake b/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig.cmake deleted file mode 100644 index cbbb710..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig.cmake +++ /dev/null @@ -1,42 +0,0 @@ -# generated from ament/cmake/core/templates/nameConfig.cmake.in - -# prevent multiple inclusion -if(_wrover_mock_CONFIG_INCLUDED) - # ensure to keep the found flag the same - if(NOT DEFINED wrover_mock_FOUND) - # explicitly set it to FALSE, otherwise CMake will set it to TRUE - set(wrover_mock_FOUND FALSE) - elseif(NOT wrover_mock_FOUND) - # use separate condition to avoid uninitialized variable warning - set(wrover_mock_FOUND FALSE) - endif() - return() -endif() -set(_wrover_mock_CONFIG_INCLUDED TRUE) - -# output package information -if(NOT wrover_mock_FIND_QUIETLY) - message(STATUS "Found wrover_mock: 0.0.0 (${wrover_mock_DIR})") -endif() - -# warn when using a deprecated package -if(NOT "" STREQUAL "") - set(_msg "Package 'wrover_mock' is deprecated") - # append custom deprecation text if available - if(NOT "" STREQUAL "TRUE") - set(_msg "${_msg} ()") - endif() - # optionally quiet the deprecation message - if(NOT wrover_mock_DEPRECATED_QUIET) - message(DEPRECATION "${_msg}") - endif() -endif() - -# flag package as ament-based to distinguish it after being find_package()-ed -set(wrover_mock_FOUND_AMENT_PACKAGE TRUE) - -# include all config extra files -set(_extras "") -foreach(_extra ${_extras}) - include("${wrover_mock_DIR}/${_extra}") -endforeach() diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/ament_prefix_path.dsv b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/ament_prefix_path.dsv deleted file mode 100644 index 79d4c95..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/ament_prefix_path.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate;AMENT_PREFIX_PATH; diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.bash b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.bash deleted file mode 100644 index 49782f2..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.bash +++ /dev/null @@ -1,46 +0,0 @@ -# generated from ament_package/template/package_level/local_setup.bash.in - -# source local_setup.sh from same directory as this file -_this_path=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" && pwd) -# provide AMENT_CURRENT_PREFIX to shell script -AMENT_CURRENT_PREFIX=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." && pwd) -# store AMENT_CURRENT_PREFIX to restore it before each environment hook -_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX - -# trace output -if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then - echo "# . \"$_this_path/local_setup.sh\"" -fi -. "$_this_path/local_setup.sh" -unset _this_path - -# unset AMENT_ENVIRONMENT_HOOKS -# if not appending to them for return -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - unset AMENT_ENVIRONMENT_HOOKS -fi - -# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks -AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX -# list all environment hooks of this package - -# source all shell-specific environment hooks of this package -# if not returning them -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - _package_local_setup_IFS=$IFS - IFS=":" - for _hook in $AMENT_ENVIRONMENT_HOOKS; do - # restore AMENT_CURRENT_PREFIX for each environment hook - AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX - # restore IFS before sourcing other files - IFS=$_package_local_setup_IFS - . "$_hook" - done - unset _hook - IFS=$_package_local_setup_IFS - unset _package_local_setup_IFS - unset AMENT_ENVIRONMENT_HOOKS -fi - -unset _package_local_setup_AMENT_CURRENT_PREFIX -unset AMENT_CURRENT_PREFIX diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.dsv b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.dsv deleted file mode 100644 index d005f5c..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.dsv +++ /dev/null @@ -1,2 +0,0 @@ -source;share/wrover_mock/environment/ament_prefix_path.sh -source;share/wrover_mock/environment/path.sh diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.sh b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.sh deleted file mode 100644 index 546d850..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.sh +++ /dev/null @@ -1,184 +0,0 @@ -# generated from ament_package/template/package_level/local_setup.sh.in - -# since this file is sourced use either the provided AMENT_CURRENT_PREFIX -# or fall back to the destination set at configure time -: ${AMENT_CURRENT_PREFIX:="/home/balabalu/workspace/WRPlayTemp/install/wrover_mock"} -if [ ! -d "$AMENT_CURRENT_PREFIX" ]; then - if [ -z "$COLCON_CURRENT_PREFIX" ]; then - echo "The compile time prefix path '$AMENT_CURRENT_PREFIX' doesn't " \ - "exist. Consider sourcing a different extension than '.sh'." 1>&2 - else - AMENT_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" - fi -fi - -# function to append values to environment variables -# using colons as separators and avoiding leading separators -ament_append_value() { - # arguments - _listname="$1" - _value="$2" - #echo "listname $_listname" - #eval echo "list value \$$_listname" - #echo "value $_value" - - # avoid leading separator - eval _values=\"\$$_listname\" - if [ -z "$_values" ]; then - eval export $_listname=\"$_value\" - #eval echo "set list \$$_listname" - else - # field separator must not be a colon - _ament_append_value_IFS=$IFS - unset IFS - eval export $_listname=\"\$$_listname:$_value\" - #eval echo "append list \$$_listname" - IFS=$_ament_append_value_IFS - unset _ament_append_value_IFS - fi - unset _values - - unset _value - unset _listname -} - -# function to append non-duplicate values to environment variables -# using colons as separators and avoiding leading separators -ament_append_unique_value() { - # arguments - _listname=$1 - _value=$2 - #echo "listname $_listname" - #eval echo "list value \$$_listname" - #echo "value $_value" - - # check if the list contains the value - eval _values=\$$_listname - _duplicate= - _ament_append_unique_value_IFS=$IFS - IFS=":" - if [ "$AMENT_SHELL" = "zsh" ]; then - ament_zsh_to_array _values - fi - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - if [ $_item = $_value ]; then - _duplicate=1 - fi - done - unset _item - - # append only non-duplicates - if [ -z "$_duplicate" ]; then - # avoid leading separator - if [ -z "$_values" ]; then - eval $_listname=\"$_value\" - #eval echo "set list \$$_listname" - else - # field separator must not be a colon - unset IFS - eval $_listname=\"\$$_listname:$_value\" - #eval echo "append list \$$_listname" - fi - fi - IFS=$_ament_append_unique_value_IFS - unset _ament_append_unique_value_IFS - unset _duplicate - unset _values - - unset _value - unset _listname -} - -# function to prepend non-duplicate values to environment variables -# using colons as separators and avoiding trailing separators -ament_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - #echo "listname $_listname" - #eval echo "list value \$$_listname" - #echo "value $_value" - - # check if the list contains the value - eval _values=\"\$$_listname\" - _duplicate= - _ament_prepend_unique_value_IFS=$IFS - IFS=":" - if [ "$AMENT_SHELL" = "zsh" ]; then - ament_zsh_to_array _values - fi - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - if [ "$_item" = "$_value" ]; then - _duplicate=1 - fi - done - unset _item - - # prepend only non-duplicates - if [ -z "$_duplicate" ]; then - # avoid trailing separator - if [ -z "$_values" ]; then - eval export $_listname=\"$_value\" - #eval echo "set list \$$_listname" - else - # field separator must not be a colon - unset IFS - eval export $_listname=\"$_value:\$$_listname\" - #eval echo "prepend list \$$_listname" - fi - fi - IFS=$_ament_prepend_unique_value_IFS - unset _ament_prepend_unique_value_IFS - unset _duplicate - unset _values - - unset _value - unset _listname -} - -# unset AMENT_ENVIRONMENT_HOOKS -# if not appending to them for return -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - unset AMENT_ENVIRONMENT_HOOKS -fi - -# list all environment hooks of this package -ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/wrover_mock/environment/ament_prefix_path.sh" -ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/wrover_mock/environment/path.sh" - -# source all shell-specific environment hooks of this package -# if not returning them -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - _package_local_setup_IFS=$IFS - IFS=":" - if [ "$AMENT_SHELL" = "zsh" ]; then - ament_zsh_to_array AMENT_ENVIRONMENT_HOOKS - fi - for _hook in $AMENT_ENVIRONMENT_HOOKS; do - if [ -f "$_hook" ]; then - # restore IFS before sourcing other files - IFS=$_package_local_setup_IFS - # trace output - if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then - echo "# . \"$_hook\"" - fi - . "$_hook" - fi - done - unset _hook - IFS=$_package_local_setup_IFS - unset _package_local_setup_IFS - unset AMENT_ENVIRONMENT_HOOKS -fi - -# reset AMENT_CURRENT_PREFIX after each package -# allowing to source multiple package-level setup files -unset AMENT_CURRENT_PREFIX diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.zsh b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.zsh deleted file mode 100644 index fe161be..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.zsh +++ /dev/null @@ -1,59 +0,0 @@ -# generated from ament_package/template/package_level/local_setup.zsh.in - -AMENT_SHELL=zsh - -# source local_setup.sh from same directory as this file -_this_path=$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd) -# provide AMENT_CURRENT_PREFIX to shell script -AMENT_CURRENT_PREFIX=$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd) -# store AMENT_CURRENT_PREFIX to restore it before each environment hook -_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX - -# function to convert array-like strings into arrays -# to wordaround SH_WORD_SPLIT not being set -ament_zsh_to_array() { - local _listname=$1 - local _dollar="$" - local _split="{=" - local _to_array="(\"$_dollar$_split$_listname}\")" - eval $_listname=$_to_array -} - -# trace output -if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then - echo "# . \"$_this_path/local_setup.sh\"" -fi -# the package-level local_setup file unsets AMENT_CURRENT_PREFIX -. "$_this_path/local_setup.sh" -unset _this_path - -# unset AMENT_ENVIRONMENT_HOOKS -# if not appending to them for return -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - unset AMENT_ENVIRONMENT_HOOKS -fi - -# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks -AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX -# list all environment hooks of this package - -# source all shell-specific environment hooks of this package -# if not returning them -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - _package_local_setup_IFS=$IFS - IFS=":" - for _hook in $AMENT_ENVIRONMENT_HOOKS; do - # restore AMENT_CURRENT_PREFIX for each environment hook - AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX - # restore IFS before sourcing other files - IFS=$_package_local_setup_IFS - . "$_hook" - done - unset _hook - IFS=$_package_local_setup_IFS - unset _package_local_setup_IFS - unset AMENT_ENVIRONMENT_HOOKS -fi - -unset _package_local_setup_AMENT_CURRENT_PREFIX -unset AMENT_CURRENT_PREFIX diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/package.dsv b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/package.dsv deleted file mode 100644 index 706374f..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/package.dsv +++ /dev/null @@ -1,4 +0,0 @@ -source;share/wrover_mock/local_setup.bash -source;share/wrover_mock/local_setup.dsv -source;share/wrover_mock/local_setup.sh -source;share/wrover_mock/local_setup.zsh diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/path.dsv b/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/path.dsv deleted file mode 100644 index b94426a..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/path.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate-if-exists;PATH;bin diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/wrover_mock b/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/wrover_mock deleted file mode 100644 index 25ce83a..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/wrover_mock +++ /dev/null @@ -1 +0,0 @@ -ament_lint_auto;ament_lint_common \ No newline at end of file diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/packages/wrover_mock b/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/packages/wrover_mock deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/wrover_mock b/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/wrover_mock deleted file mode 100644 index 63599b8..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/wrover_mock +++ /dev/null @@ -1 +0,0 @@ -/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format \ No newline at end of file diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_package_templates/templates.cmake b/WRPlayTemp/build/wrover_mock/ament_cmake_package_templates/templates.cmake deleted file mode 100644 index c83e60d..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_package_templates/templates.cmake +++ /dev/null @@ -1,14 +0,0 @@ -set(ament_cmake_package_templates_ENVIRONMENT_HOOK_LIBRARY_PATH "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/environment_hook/library_path.sh") -set(ament_cmake_package_templates_ENVIRONMENT_HOOK_PYTHONPATH "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/environment_hook/pythonpath.sh.in") -set(ament_cmake_package_templates_PACKAGE_LEVEL "") -list(APPEND ament_cmake_package_templates_PACKAGE_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/package_level/local_setup.bash.in") -list(APPEND ament_cmake_package_templates_PACKAGE_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/package_level/local_setup.sh.in") -list(APPEND ament_cmake_package_templates_PACKAGE_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/package_level/local_setup.zsh.in") -set(ament_cmake_package_templates_PREFIX_LEVEL "") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/local_setup.bash") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/local_setup.sh.in") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/local_setup.zsh") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/setup.bash") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/setup.sh.in") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/setup.zsh") -list(APPEND ament_cmake_package_templates_PREFIX_LEVEL "/home/balabalu/ros2_jazzy/build/ament_package/ament_package/template/prefix_level/_local_setup_util.py") diff --git a/WRPlayTemp/build/wrover_mock/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake b/WRPlayTemp/build/wrover_mock/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake deleted file mode 100644 index e2d0506..0000000 --- a/WRPlayTemp/build/wrover_mock/ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake +++ /dev/null @@ -1,57 +0,0 @@ -# generated from -# ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target.cmake.in - -function(ament_cmake_uninstall_target_remove_empty_directories path) - set(install_space "/home/balabalu/workspace/WRPlayTemp/install/wrover_mock") - if(install_space STREQUAL "") - message(FATAL_ERROR "The CMAKE_INSTALL_PREFIX variable must not be empty") - endif() - - string(LENGTH "${install_space}" length) - string(SUBSTRING "${path}" 0 ${length} path_prefix) - if(NOT path_prefix STREQUAL install_space) - message(FATAL_ERROR "The path '${path}' must be within the install space '${install_space}'") - endif() - if(path STREQUAL install_space) - return() - endif() - - # check if directory is empty - file(GLOB files "${path}/*") - list(LENGTH files length) - if(length EQUAL 0) - message(STATUS "Uninstalling: ${path}/") - execute_process(COMMAND "/usr/bin/cmake" "-E" "remove_directory" "${path}") - # recursively try to remove parent directories - get_filename_component(parent_path "${path}" PATH) - ament_cmake_uninstall_target_remove_empty_directories("${parent_path}") - endif() -endfunction() - -# uninstall files installed using the standard install() function -set(install_manifest "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/install_manifest.txt") -if(NOT EXISTS "${install_manifest}") - message(FATAL_ERROR "Cannot find install manifest: ${install_manifest}") -endif() - -file(READ "${install_manifest}" installed_files) -string(REGEX REPLACE "\n" ";" installed_files "${installed_files}") -foreach(installed_file ${installed_files}) - if(EXISTS "${installed_file}" OR IS_SYMLINK "${installed_file}") - message(STATUS "Uninstalling: ${installed_file}") - file(REMOVE "${installed_file}") - if(EXISTS "${installed_file}" OR IS_SYMLINK "${installed_file}") - message(FATAL_ERROR "Failed to remove '${installed_file}'") - endif() - - # remove empty parent folders - get_filename_component(parent_path "${installed_file}" PATH) - ament_cmake_uninstall_target_remove_empty_directories("${parent_path}") - endif() -endforeach() - -# end of template - -message(STATUS "Execute custom uninstall script") - -# begin of custom uninstall code diff --git a/WRPlayTemp/build/wrover_mock/cmake_args.last b/WRPlayTemp/build/wrover_mock/cmake_args.last deleted file mode 100644 index 4af1832..0000000 --- a/WRPlayTemp/build/wrover_mock/cmake_args.last +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/WRPlayTemp/build/wrover_mock/cmake_install.cmake b/WRPlayTemp/build/wrover_mock/cmake_install.cmake deleted file mode 100644 index 7c3d0f8..0000000 --- a/WRPlayTemp/build/wrover_mock/cmake_install.cmake +++ /dev/null @@ -1,113 +0,0 @@ -# Install script for directory: /home/balabalu/workspace/WRPlayTemp/src/wrover_mock - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/home/balabalu/workspace/WRPlayTemp/install/wrover_mock") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "1") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/package_run_dependencies" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/wrover_mock") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/parent_prefix_path" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/wrover_mock") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock/environment" TYPE FILE FILES "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock/environment" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/ament_prefix_path.dsv") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock/environment" TYPE FILE FILES "/home/balabalu/ros2_jazzy/install/ament_cmake_core/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock/environment" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/path.dsv") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.bash") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.sh") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.zsh") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/local_setup.dsv") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_environment_hooks/package.dsv") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/packages" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_index/share/ament_index/resource_index/packages/wrover_mock") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock/cmake" TYPE FILE FILES - "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig.cmake" - "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/ament_cmake_core/wrover_mockConfig-version.cmake" - ) -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/wrover_mock" TYPE FILE FILES "/home/balabalu/workspace/WRPlayTemp/src/wrover_mock/package.xml") -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/home/balabalu/workspace/WRPlayTemp/build/wrover_mock/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/WRPlayTemp/build/wrover_mock/colcon_build.rc b/WRPlayTemp/build/wrover_mock/colcon_build.rc deleted file mode 100644 index 573541a..0000000 --- a/WRPlayTemp/build/wrover_mock/colcon_build.rc +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/WRPlayTemp/build/wrover_mock/colcon_command_prefix_build.sh b/WRPlayTemp/build/wrover_mock/colcon_command_prefix_build.sh deleted file mode 100644 index f9867d5..0000000 --- a/WRPlayTemp/build/wrover_mock/colcon_command_prefix_build.sh +++ /dev/null @@ -1 +0,0 @@ -# generated from colcon_core/shell/template/command_prefix.sh.em diff --git a/WRPlayTemp/build/wrover_mock/colcon_command_prefix_build.sh.env b/WRPlayTemp/build/wrover_mock/colcon_command_prefix_build.sh.env deleted file mode 100644 index 7c80081..0000000 --- a/WRPlayTemp/build/wrover_mock/colcon_command_prefix_build.sh.env +++ /dev/null @@ -1,63 +0,0 @@ -AMENT_PREFIX_PATH=/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format -CMAKE_PREFIX_PATH=/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp -COLCON=1 -COLCON_PREFIX_PATH=/home/balabalu/ros2_jazzy/install -COLORTERM=truecolor -DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus -DEBUGINFOD_URLS=https://debuginfod.ubuntu.com -DESKTOP_SESSION=ubuntu -DISPLAY=:0 -GDMSESSION=ubuntu -GNOME_DESKTOP_SESSION_ID=this-is-deprecated -GNOME_KEYRING_CONTROL=/run/user/1000/keyring -GNOME_SETUP_DISPLAY=:1 -GNOME_SHELL_SESSION_MODE=ubuntu -GNOME_TERMINAL_SCREEN=/org/gnome/Terminal/screen/a90ec0f0_b34e_425a_af24_b14f4aa11342 -GNOME_TERMINAL_SERVICE=:1.114 -GSM_SKIP_SSH_AGENT_WORKAROUND=true -GTK_MODULES=gail:atk-bridge -HOME=/home/balabalu -IM_CONFIG_PHASE=1 -LANG=en_US.UTF-8 -LC_ALL=en_US.UTF-8 -LD_LIBRARY_PATH=/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib -LESSCLOSE=/usr/bin/lesspipe %s %s -LESSOPEN=| /usr/bin/lesspipe %s -LOGNAME=balabalu -LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90: -MEMORY_PRESSURE_WATCH=/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure -MEMORY_PRESSURE_WRITE=c29tZSAyMDAwMDAgMjAwMDAwMAA= -OLDPWD=/home/balabalu/workspace -PATH=/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin -PKG_CONFIG_PATH=/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig -PWD=/home/balabalu/workspace/WRPlayTemp/build/wrover_mock -PYTHONPATH=/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages -QT_ACCESSIBILITY=1 -QT_IM_MODULE=ibus -ROS_AUTOMATIC_DISCOVERY_RANGE=SUBNET -ROS_DISTRO=jazzy -ROS_DOMAIN_ID=25 -ROS_PYTHON_VERSION=3 -ROS_VERSION=2 -SESSION_MANAGER=local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966 -SHELL=/bin/bash -SHLVL=1 -SSH_AUTH_SOCK=/run/user/1000/keyring/ssh -SYSTEMD_EXEC_PID=2222 -TERM=xterm-256color -USER=balabalu -USERNAME=balabalu -VTE_VERSION=7600 -WAYLAND_DISPLAY=wayland-0 -XAUTHORITY=/run/user/1000/.mutter-Xwaylandauth.3FW6P2 -XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg -XDG_CURRENT_DESKTOP=ubuntu:GNOME -XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop -XDG_MENU_PREFIX=gnome- -XDG_RUNTIME_DIR=/run/user/1000 -XDG_SESSION_CLASS=user -XDG_SESSION_DESKTOP=ubuntu -XDG_SESSION_TYPE=wayland -XMODIFIERS=@im=ibus -_=/usr/bin/colcon -_colcon_cd_root=/opt/ros/jazzy/ diff --git a/WRPlayTemp/build/wrover_mock/install_manifest.txt b/WRPlayTemp/build/wrover_mock/install_manifest.txt deleted file mode 100644 index 2d56c2c..0000000 --- a/WRPlayTemp/build/wrover_mock/install_manifest.txt +++ /dev/null @@ -1,15 +0,0 @@ -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake -/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml \ No newline at end of file diff --git a/WRPlayTemp/install/.colcon_install_layout b/WRPlayTemp/install/.colcon_install_layout deleted file mode 100644 index 3aad533..0000000 --- a/WRPlayTemp/install/.colcon_install_layout +++ /dev/null @@ -1 +0,0 @@ -isolated diff --git a/WRPlayTemp/install/COLCON_IGNORE b/WRPlayTemp/install/COLCON_IGNORE deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock/Robot b/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock/Robot deleted file mode 100755 index d2d1dad..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock/Robot +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/python3 -# EASY-INSTALL-ENTRY-SCRIPT: 'WRover-Mock==0.0.0','console_scripts','Robot' -import re -import sys - -# for compatibility with easy_install; see #2198 -__requires__ = 'WRover-Mock==0.0.0' - -try: - from importlib.metadata import distribution -except ImportError: - try: - from importlib_metadata import distribution - except ImportError: - from pkg_resources import load_entry_point - - -def importlib_load_entry_point(spec, group, name): - dist_name, _, _ = spec.partition('==') - matches = ( - entry_point - for entry_point in distribution(dist_name).entry_points - if entry_point.group == group and entry_point.name == name - ) - return next(matches).load() - - -globals().setdefault('load_entry_point', importlib_load_entry_point) - - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(load_entry_point('WRover-Mock==0.0.0', 'console_scripts', 'Robot')()) diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/PKG-INFO b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/PKG-INFO deleted file mode 100644 index 9a6ec1c..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/PKG-INFO +++ /dev/null @@ -1,8 +0,0 @@ -Metadata-Version: 2.1 -Name: WRover-Mock -Version: 0.0.0 -Summary: Sets up mock rover -Maintainer: Wisconsin Robotics -Maintainer-email: wisconsinrobotics@cae.wisc.edu -License: Apache-2.0 -License-File: LICENSE diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/SOURCES.txt b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/SOURCES.txt deleted file mode 100644 index 98d2c28..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/SOURCES.txt +++ /dev/null @@ -1,18 +0,0 @@ -LICENSE -package.xml -setup.cfg -setup.py -../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt -../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -../../build/WRover_Mock/WRover_Mock.egg-info/zip-safe -WRover_Mock/AbstractRobot.py -WRover_Mock/Robot.py -WRover_Mock/__init__.py -resource/WRover_Mock -test/test_copyright.py -test/test_flake8.py -test/test_pep257.py \ No newline at end of file diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/dependency_links.txt b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/dependency_links.txt deleted file mode 100644 index 8b13789..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/entry_points.txt b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/entry_points.txt deleted file mode 100644 index 7e0ff0d..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/entry_points.txt +++ /dev/null @@ -1,2 +0,0 @@ -[console_scripts] -Robot = WRover_Mock.Robot:main diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/requires.txt b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/requires.txt deleted file mode 100644 index 49fe098..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/requires.txt +++ /dev/null @@ -1 +0,0 @@ -setuptools diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/top_level.txt b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/top_level.txt deleted file mode 100644 index e9be894..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -WRover_Mock diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/zip-safe b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/zip-safe deleted file mode 100644 index 8b13789..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info/zip-safe +++ /dev/null @@ -1 +0,0 @@ - diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py deleted file mode 100644 index 22254cb..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py +++ /dev/null @@ -1,88 +0,0 @@ -print('hello world') - - -from ast import Num -import math -from tokenize import Number -from std_msgs.msg import Float64 - - -class Robot: - - def __init__(self, - wheelBase, - maxVelocity, - acceleration, - startX = 0.0, - startY = 0.0, - startTheta = 0.0 - ) -> None: - - self.wheelBase = wheelBase - self.maxVelocity = maxVelocity - self.acceleration = acceleration - - self.x = startX - self.y = startY - self.theta = startTheta - - self.velocity = 0.0 - self.dtheta = 0.0 - - self.leftWheel = 0.0 - self.rightWheel = 0.0 - self.dt = 0.05 - - self.leftDist = 0.0 - self.rightDist = 0.0 - - def coerceIn(self, val, bot, top) -> Number: return max(min(val, top), bot) - - def setLeft(self, left): - self.leftWheel = self.coerceIn(left, -1.0, 1.0) - def setRight(self, right): - self.rightWheel = self.coerceIn(right, -1.0, 1.0) - - def update(self): - targetVelocity = (self.leftWheel + self.rightWheel) / 2 * self.maxVelocity - dtheta = 0.0 - - if(self.rightWheel == -self.leftWheel): - dtheta = self.leftWheel * self.maxVelocity / self.wheelBase * self.dt - elif(self.leftWheel != self.rightWheel): - r = self.wheelBase * (self.leftWheel + self.rightWheel) / 2 / abs(self.leftWheel - self.rightWheel) - dist = targetVelocity * self.dt - h = math.sqrt(r*r - dist*dist/4) - dtheta = 2 * math.atan(dist/2/h) * (1 if self.leftWheel > self.rightWheel else -1) - - self.theta = (self.theta + dtheta) % (math.pi * 2) - - if self.acceleration > abs(targetVelocity - self.velocity): - self.velocity = targetVelocity - else: - self.velocity += self.acceleration if targetVelocity > self.velocity else -self.acceleration - - self.velocity = self.coerceIn(self.velocity, -self.maxVelocity, self.maxVelocity) - - self.x += math.sin(self.theta) * self.velocity * self.dt - self.y += math.cos(self.theta) * self.velocity * self.dt - - self.leftDist += self.velocity * self.dt - self.rightDist += self.velocity * self.dt - - def getLeftDistance(self) -> Float64: - msg = Float64() - msg.data = self.leftDist - return msg - def getRightDistance(self) -> Float64: - msg = Float64() - msg.data = self.rightDist - return msg - def getHeading(self) -> Float64: - msg = Float64() - msg.data = self.theta - return msg - def getHeadingInDegrees(self) -> Float64: - msg = Float64() - msg.data = self.theta / math.pi * 180 - return msg diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py deleted file mode 100644 index c23ab6b..0000000 --- a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py +++ /dev/null @@ -1,72 +0,0 @@ - -import rclpy, std_msgs, geometry_msgs -from rclpy.node import Node -from WRover_Mock.AbstractRobot import Robot -from geometry_msgs.msg import Pose2D -from std_msgs.msg import Float64 - - -class Rover(Node): - - def __init__(self): - super().__init__('rover') - - #setting up subscribers - self.left_subscriber = self.create_subscription( - Float64, - 'rover/cmd/left', - self.set_left, - 10) - self.right_subscriber = self.create_subscription( - Float64, - 'rover/cmd/right', - self.set_right, - 10) - - #Setting up Publishers - self.left_enc_publisher = self.create_publisher( Float64,'rover/enc/left', 10) - self.right_enc_publisher = self.create_publisher( Float64,'rover/enc/left', 10) - self.gyro_publisher = self.create_publisher( Float64, 'rover/gyro', 10) - self.pose_publisher = self.create_publisher(Pose2D,'rover/pose', 10) # top secret - do not subscribe! - - #setting up timer to publish.timer_call - timer_period = 1/hz # seconds (executes every .05 seconds if hz is 20) - self.timer = self.create_timer(timer_period, self.timer_callback) - - def timer_callback(self): - rover.update() - self.left_enc_publisher.publish((rover.getLeftDistance())) - self.right_enc_publisher.publish((rover.getRightDistance())) - self.gyro_publisher.publish((rover.getHeading())) - - pose = Pose2D() - pose.x = rover.x - pose.y = rover.y - pose.theta = rover.theta - self.pose_publisher.publish(pose) - - def set_left(self, msg): rover.setLeft(msg.data) - - def set_right(self, msg): rover.setRight(msg.data) - -def main(args = None): - rclpy.init(args=args) - - rover = Rover() - - rclpy.spin(rover) - - #Kill program after ending - rover.destroy_node() - rclpy.shutdown() - -hz = 20 -rover = Robot( - wheelBase = 50, - maxVelocity = 1000/hz, - acceleration = 10000, -) - - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/AbstractRobot.cpython-312.pyc b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/AbstractRobot.cpython-312.pyc deleted file mode 100644 index 673a20a..0000000 Binary files a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/AbstractRobot.cpython-312.pyc and /dev/null differ diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/Robot.cpython-312.pyc b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/Robot.cpython-312.pyc deleted file mode 100644 index 082b807..0000000 Binary files a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/Robot.cpython-312.pyc and /dev/null differ diff --git a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/__init__.cpython-312.pyc b/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5198a69..0000000 Binary files a/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv deleted file mode 100644 index 79d4c95..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate;AMENT_PREFIX_PATH; diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1 b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1 deleted file mode 100644 index 26b9997..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1 +++ /dev/null @@ -1,3 +0,0 @@ -# generated from colcon_powershell/shell/template/hook_prepend_value.ps1.em - -colcon_prepend_unique_value AMENT_PREFIX_PATH "$env:COLCON_CURRENT_PREFIX" diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh deleted file mode 100644 index f3041f6..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh +++ /dev/null @@ -1,3 +0,0 @@ -# generated from colcon_core/shell/template/hook_prepend_value.sh.em - -_colcon_prepend_unique_value AMENT_PREFIX_PATH "$COLCON_CURRENT_PREFIX" diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv deleted file mode 100644 index c2ddcdb..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate;PYTHONPATH;lib/python3.12/site-packages diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1 b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1 deleted file mode 100644 index bdd69af..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1 +++ /dev/null @@ -1,3 +0,0 @@ -# generated from colcon_powershell/shell/template/hook_prepend_value.ps1.em - -colcon_prepend_unique_value PYTHONPATH "$env:COLCON_CURRENT_PREFIX\lib/python3.12/site-packages" diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh deleted file mode 100644 index 45388fe..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh +++ /dev/null @@ -1,3 +0,0 @@ -# generated from colcon_core/shell/template/hook_prepend_value.sh.em - -_colcon_prepend_unique_value PYTHONPATH "$COLCON_CURRENT_PREFIX/lib/python3.12/site-packages" diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash deleted file mode 100644 index 8d42a93..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash +++ /dev/null @@ -1,31 +0,0 @@ -# generated from colcon_bash/shell/template/package.bash.em - -# This script extends the environment for this package. - -# a bash script is able to determine its own path if necessary -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - # the prefix is two levels up from the package specific share directory - _colcon_package_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." > /dev/null && pwd)" -else - _colcon_package_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -_colcon_package_bash_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$@" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source sh script of this package -_colcon_package_bash_source_script "$_colcon_package_bash_COLCON_CURRENT_PREFIX/share/WRover_Mock/package.sh" - -unset _colcon_package_bash_source_script -unset _colcon_package_bash_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv deleted file mode 100644 index 841cd09..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv +++ /dev/null @@ -1,6 +0,0 @@ -source;share/WRover_Mock/hook/pythonpath.ps1 -source;share/WRover_Mock/hook/pythonpath.dsv -source;share/WRover_Mock/hook/pythonpath.sh -source;share/WRover_Mock/hook/ament_prefix_path.ps1 -source;share/WRover_Mock/hook/ament_prefix_path.dsv -source;share/WRover_Mock/hook/ament_prefix_path.sh diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1 b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1 deleted file mode 100644 index cb098fb..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1 +++ /dev/null @@ -1,116 +0,0 @@ -# generated from colcon_powershell/shell/template/package.ps1.em - -# function to append a value to a variable -# which uses colons as separators -# duplicates as well as leading separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -function colcon_append_unique_value { - param ( - $_listname, - $_value - ) - - # get values from variable - if (Test-Path Env:$_listname) { - $_values=(Get-Item env:$_listname).Value - } else { - $_values="" - } - $_duplicate="" - # start with no values - $_all_values="" - # iterate over existing values in the variable - if ($_values) { - $_values.Split(";") | ForEach { - # not an empty string - if ($_) { - # not a duplicate of _value - if ($_ -eq $_value) { - $_duplicate="1" - } - if ($_all_values) { - $_all_values="${_all_values};$_" - } else { - $_all_values="$_" - } - } - } - } - # append only non-duplicates - if (!$_duplicate) { - # avoid leading separator - if ($_all_values) { - $_all_values="${_all_values};${_value}" - } else { - $_all_values="${_value}" - } - } - - # export the updated variable - Set-Item env:\$_listname -Value "$_all_values" -} - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -function colcon_prepend_unique_value { - param ( - $_listname, - $_value - ) - - # get values from variable - if (Test-Path Env:$_listname) { - $_values=(Get-Item env:$_listname).Value - } else { - $_values="" - } - # start with the new value - $_all_values="$_value" - # iterate over existing values in the variable - if ($_values) { - $_values.Split(";") | ForEach { - # not an empty string - if ($_) { - # not a duplicate of _value - if ($_ -ne $_value) { - # keep non-duplicate values - $_all_values="${_all_values};$_" - } - } - } - } - # export the updated variable - Set-Item env:\$_listname -Value "$_all_values" -} - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -function colcon_package_source_powershell_script { - param ( - $_colcon_package_source_powershell_script - ) - # source script with conditional trace output - if (Test-Path $_colcon_package_source_powershell_script) { - if ($env:COLCON_TRACE) { - echo ". '$_colcon_package_source_powershell_script'" - } - . "$_colcon_package_source_powershell_script" - } else { - Write-Error "not found: '$_colcon_package_source_powershell_script'" - } -} - - -# a powershell script is able to determine its own path -# the prefix is two levels up from the package specific share directory -$env:COLCON_CURRENT_PREFIX=(Get-Item $PSCommandPath).Directory.Parent.Parent.FullName - -colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/WRover_Mock/hook/pythonpath.ps1" -colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/WRover_Mock/hook/ament_prefix_path.ps1" - -Remove-Item Env:\COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh deleted file mode 100644 index 00800e5..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh +++ /dev/null @@ -1,87 +0,0 @@ -# generated from colcon_core/shell/template/package.sh.em - -# This script extends the environment for this package. - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -_colcon_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - - # get values from variable - eval _values=\"\$$_listname\" - # backup the field separator - _colcon_prepend_unique_value_IFS=$IFS - IFS=":" - # start with the new value - _all_values="$_value" - # workaround SH_WORD_SPLIT not being set in zsh - if [ "$(command -v colcon_zsh_convert_to_array)" ]; then - colcon_zsh_convert_to_array _values - fi - # iterate over existing values in the variable - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - # ignore duplicates of _value - if [ "$_item" = "$_value" ]; then - continue - fi - # keep non-duplicate values - _all_values="$_all_values:$_item" - done - unset _item - # restore the field separator - IFS=$_colcon_prepend_unique_value_IFS - unset _colcon_prepend_unique_value_IFS - # export the updated variable - eval export $_listname=\"$_all_values\" - unset _all_values - unset _values - - unset _value - unset _listname -} - -# since a plain shell script can't determine its own path when being sourced -# either use the provided COLCON_CURRENT_PREFIX -# or fall back to the build time prefix (if it exists) -_colcon_package_sh_COLCON_CURRENT_PREFIX="/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock" -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - if [ ! -d "$_colcon_package_sh_COLCON_CURRENT_PREFIX" ]; then - echo "The build time path \"$_colcon_package_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 - unset _colcon_package_sh_COLCON_CURRENT_PREFIX - return 1 - fi - COLCON_CURRENT_PREFIX="$_colcon_package_sh_COLCON_CURRENT_PREFIX" -fi -unset _colcon_package_sh_COLCON_CURRENT_PREFIX - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -_colcon_package_sh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$@" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source sh hooks -_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/WRover_Mock/hook/pythonpath.sh" -_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/WRover_Mock/hook/ament_prefix_path.sh" - -unset _colcon_package_sh_source_script -unset COLCON_CURRENT_PREFIX - -# do not unset _colcon_prepend_unique_value since it might be used by non-primary shell hooks diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.xml b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.xml deleted file mode 100644 index c3e9124..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - WRover_Mock - 0.0.0 - Sets up mock rover - Wisconsig Robotics - Apache-2.0 - - rclpy - std_msgs - geometry_msgs - - ament_copyright - ament_flake8 - ament_pep257 - python3-pytest - - - ament_python - - diff --git a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh b/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh deleted file mode 100644 index b842ec7..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh +++ /dev/null @@ -1,42 +0,0 @@ -# generated from colcon_zsh/shell/template/package.zsh.em - -# This script extends the environment for this package. - -# a zsh script is able to determine its own path if necessary -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - # the prefix is two levels up from the package specific share directory - _colcon_package_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd)" -else - _colcon_package_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -_colcon_package_zsh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$@" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# function to convert array-like strings into arrays -# to workaround SH_WORD_SPLIT not being set -colcon_zsh_convert_to_array() { - local _listname=$1 - local _dollar="$" - local _split="{=" - local _to_array="(\"$_dollar$_split$_listname}\")" - eval $_listname=$_to_array -} - -# source sh script of this package -_colcon_package_zsh_source_script "$_colcon_package_zsh_COLCON_CURRENT_PREFIX/share/WRover_Mock/package.sh" -unset convert_zsh_to_array - -unset _colcon_package_zsh_source_script -unset _colcon_package_zsh_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages/WRover_Mock b/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages/WRover_Mock deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock b/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock deleted file mode 100644 index d1359a9..0000000 --- a/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock +++ /dev/null @@ -1 +0,0 @@ -geometry_msgs:rclpy:std_msgs \ No newline at end of file diff --git a/WRPlayTemp/install/_local_setup_util_ps1.py b/WRPlayTemp/install/_local_setup_util_ps1.py deleted file mode 100644 index 83abe63..0000000 --- a/WRPlayTemp/install/_local_setup_util_ps1.py +++ /dev/null @@ -1,407 +0,0 @@ -# Copyright 2016-2019 Dirk Thomas -# Licensed under the Apache License, Version 2.0 - -import argparse -from collections import OrderedDict -import os -from pathlib import Path -import sys - - -FORMAT_STR_COMMENT_LINE = '# {comment}' -FORMAT_STR_SET_ENV_VAR = 'Set-Item -Path "Env:{name}" -Value "{value}"' -FORMAT_STR_USE_ENV_VAR = '$env:{name}' -FORMAT_STR_INVOKE_SCRIPT = '_colcon_prefix_powershell_source_script "{script_path}"' -FORMAT_STR_REMOVE_LEADING_SEPARATOR = '' -FORMAT_STR_REMOVE_TRAILING_SEPARATOR = '' - -DSV_TYPE_APPEND_NON_DUPLICATE = 'append-non-duplicate' -DSV_TYPE_PREPEND_NON_DUPLICATE = 'prepend-non-duplicate' -DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS = 'prepend-non-duplicate-if-exists' -DSV_TYPE_SET = 'set' -DSV_TYPE_SET_IF_UNSET = 'set-if-unset' -DSV_TYPE_SOURCE = 'source' - - -def main(argv=sys.argv[1:]): # noqa: D103 - parser = argparse.ArgumentParser( - description='Output shell commands for the packages in topological ' - 'order') - parser.add_argument( - 'primary_extension', - help='The file extension of the primary shell') - parser.add_argument( - 'additional_extension', nargs='?', - help='The additional file extension to be considered') - parser.add_argument( - '--merged-install', action='store_true', - help='All install prefixes are merged into a single location') - args = parser.parse_args(argv) - - packages = get_packages(Path(__file__).parent, args.merged_install) - - ordered_packages = order_packages(packages) - for pkg_name in ordered_packages: - if _include_comments(): - print( - FORMAT_STR_COMMENT_LINE.format_map( - {'comment': 'Package: ' + pkg_name})) - prefix = os.path.abspath(os.path.dirname(__file__)) - if not args.merged_install: - prefix = os.path.join(prefix, pkg_name) - for line in get_commands( - pkg_name, prefix, args.primary_extension, - args.additional_extension - ): - print(line) - - for line in _remove_ending_separators(): - print(line) - - -def get_packages(prefix_path, merged_install): - """ - Find packages based on colcon-specific files created during installation. - - :param Path prefix_path: The install prefix path of all packages - :param bool merged_install: The flag if the packages are all installed - directly in the prefix or if each package is installed in a subdirectory - named after the package - :returns: A mapping from the package name to the set of runtime - dependencies - :rtype: dict - """ - packages = {} - # since importing colcon_core isn't feasible here the following constant - # must match colcon_core.location.get_relative_package_index_path() - subdirectory = 'share/colcon-core/packages' - if merged_install: - # return if workspace is empty - if not (prefix_path / subdirectory).is_dir(): - return packages - # find all files in the subdirectory - for p in (prefix_path / subdirectory).iterdir(): - if not p.is_file(): - continue - if p.name.startswith('.'): - continue - add_package_runtime_dependencies(p, packages) - else: - # for each subdirectory look for the package specific file - for p in prefix_path.iterdir(): - if not p.is_dir(): - continue - if p.name.startswith('.'): - continue - p = p / subdirectory / p.name - if p.is_file(): - add_package_runtime_dependencies(p, packages) - - # remove unknown dependencies - pkg_names = set(packages.keys()) - for k in packages.keys(): - packages[k] = {d for d in packages[k] if d in pkg_names} - - return packages - - -def add_package_runtime_dependencies(path, packages): - """ - Check the path and if it exists extract the packages runtime dependencies. - - :param Path path: The resource file containing the runtime dependencies - :param dict packages: A mapping from package names to the sets of runtime - dependencies to add to - """ - content = path.read_text() - dependencies = set(content.split(os.pathsep) if content else []) - packages[path.name] = dependencies - - -def order_packages(packages): - """ - Order packages topologically. - - :param dict packages: A mapping from package name to the set of runtime - dependencies - :returns: The package names - :rtype: list - """ - # select packages with no dependencies in alphabetical order - to_be_ordered = list(packages.keys()) - ordered = [] - while to_be_ordered: - pkg_names_without_deps = [ - name for name in to_be_ordered if not packages[name]] - if not pkg_names_without_deps: - reduce_cycle_set(packages) - raise RuntimeError( - 'Circular dependency between: ' + ', '.join(sorted(packages))) - pkg_names_without_deps.sort() - pkg_name = pkg_names_without_deps[0] - to_be_ordered.remove(pkg_name) - ordered.append(pkg_name) - # remove item from dependency lists - for k in list(packages.keys()): - if pkg_name in packages[k]: - packages[k].remove(pkg_name) - return ordered - - -def reduce_cycle_set(packages): - """ - Reduce the set of packages to the ones part of the circular dependency. - - :param dict packages: A mapping from package name to the set of runtime - dependencies which is modified in place - """ - last_depended = None - while len(packages) > 0: - # get all remaining dependencies - depended = set() - for pkg_name, dependencies in packages.items(): - depended = depended.union(dependencies) - # remove all packages which are not dependent on - for name in list(packages.keys()): - if name not in depended: - del packages[name] - if last_depended: - # if remaining packages haven't changed return them - if last_depended == depended: - return packages.keys() - # otherwise reduce again - last_depended = depended - - -def _include_comments(): - # skipping comment lines when COLCON_TRACE is not set speeds up the - # processing especially on Windows - return bool(os.environ.get('COLCON_TRACE')) - - -def get_commands(pkg_name, prefix, primary_extension, additional_extension): - commands = [] - package_dsv_path = os.path.join(prefix, 'share', pkg_name, 'package.dsv') - if os.path.exists(package_dsv_path): - commands += process_dsv_file( - package_dsv_path, prefix, primary_extension, additional_extension) - return commands - - -def process_dsv_file( - dsv_path, prefix, primary_extension=None, additional_extension=None -): - commands = [] - if _include_comments(): - commands.append(FORMAT_STR_COMMENT_LINE.format_map({'comment': dsv_path})) - with open(dsv_path, 'r') as h: - content = h.read() - lines = content.splitlines() - - basenames = OrderedDict() - for i, line in enumerate(lines): - # skip over empty or whitespace-only lines - if not line.strip(): - continue - # skip over comments - if line.startswith('#'): - continue - try: - type_, remainder = line.split(';', 1) - except ValueError: - raise RuntimeError( - "Line %d in '%s' doesn't contain a semicolon separating the " - 'type from the arguments' % (i + 1, dsv_path)) - if type_ != DSV_TYPE_SOURCE: - # handle non-source lines - try: - commands += handle_dsv_types_except_source( - type_, remainder, prefix) - except RuntimeError as e: - raise RuntimeError( - "Line %d in '%s' %s" % (i + 1, dsv_path, e)) from e - else: - # group remaining source lines by basename - path_without_ext, ext = os.path.splitext(remainder) - if path_without_ext not in basenames: - basenames[path_without_ext] = set() - assert ext.startswith('.') - ext = ext[1:] - if ext in (primary_extension, additional_extension): - basenames[path_without_ext].add(ext) - - # add the dsv extension to each basename if the file exists - for basename, extensions in basenames.items(): - if not os.path.isabs(basename): - basename = os.path.join(prefix, basename) - if os.path.exists(basename + '.dsv'): - extensions.add('dsv') - - for basename, extensions in basenames.items(): - if not os.path.isabs(basename): - basename = os.path.join(prefix, basename) - if 'dsv' in extensions: - # process dsv files recursively - commands += process_dsv_file( - basename + '.dsv', prefix, primary_extension=primary_extension, - additional_extension=additional_extension) - elif primary_extension in extensions and len(extensions) == 1: - # source primary-only files - commands += [ - FORMAT_STR_INVOKE_SCRIPT.format_map({ - 'prefix': prefix, - 'script_path': basename + '.' + primary_extension})] - elif additional_extension in extensions: - # source non-primary files - commands += [ - FORMAT_STR_INVOKE_SCRIPT.format_map({ - 'prefix': prefix, - 'script_path': basename + '.' + additional_extension})] - - return commands - - -def handle_dsv_types_except_source(type_, remainder, prefix): - commands = [] - if type_ in (DSV_TYPE_SET, DSV_TYPE_SET_IF_UNSET): - try: - env_name, value = remainder.split(';', 1) - except ValueError: - raise RuntimeError( - "doesn't contain a semicolon separating the environment name " - 'from the value') - try_prefixed_value = os.path.join(prefix, value) if value else prefix - if os.path.exists(try_prefixed_value): - value = try_prefixed_value - if type_ == DSV_TYPE_SET: - commands += _set(env_name, value) - elif type_ == DSV_TYPE_SET_IF_UNSET: - commands += _set_if_unset(env_name, value) - else: - assert False - elif type_ in ( - DSV_TYPE_APPEND_NON_DUPLICATE, - DSV_TYPE_PREPEND_NON_DUPLICATE, - DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS - ): - try: - env_name_and_values = remainder.split(';') - except ValueError: - raise RuntimeError( - "doesn't contain a semicolon separating the environment name " - 'from the values') - env_name = env_name_and_values[0] - values = env_name_and_values[1:] - for value in values: - if not value: - value = prefix - elif not os.path.isabs(value): - value = os.path.join(prefix, value) - if ( - type_ == DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS and - not os.path.exists(value) - ): - comment = f'skip extending {env_name} with not existing ' \ - f'path: {value}' - if _include_comments(): - commands.append( - FORMAT_STR_COMMENT_LINE.format_map({'comment': comment})) - elif type_ == DSV_TYPE_APPEND_NON_DUPLICATE: - commands += _append_unique_value(env_name, value) - else: - commands += _prepend_unique_value(env_name, value) - else: - raise RuntimeError( - 'contains an unknown environment hook type: ' + type_) - return commands - - -env_state = {} - - -def _append_unique_value(name, value): - global env_state - if name not in env_state: - if os.environ.get(name): - env_state[name] = set(os.environ[name].split(os.pathsep)) - else: - env_state[name] = set() - # append even if the variable has not been set yet, in case a shell script sets the - # same variable without the knowledge of this Python script. - # later _remove_ending_separators() will cleanup any unintentional leading separator - extend = FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + os.pathsep - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': extend + value}) - if value not in env_state[name]: - env_state[name].add(value) - else: - if not _include_comments(): - return [] - line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) - return [line] - - -def _prepend_unique_value(name, value): - global env_state - if name not in env_state: - if os.environ.get(name): - env_state[name] = set(os.environ[name].split(os.pathsep)) - else: - env_state[name] = set() - # prepend even if the variable has not been set yet, in case a shell script sets the - # same variable without the knowledge of this Python script. - # later _remove_ending_separators() will cleanup any unintentional trailing separator - extend = os.pathsep + FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': value + extend}) - if value not in env_state[name]: - env_state[name].add(value) - else: - if not _include_comments(): - return [] - line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) - return [line] - - -# generate commands for removing prepended underscores -def _remove_ending_separators(): - # do nothing if the shell extension does not implement the logic - if FORMAT_STR_REMOVE_TRAILING_SEPARATOR is None: - return [] - - global env_state - commands = [] - for name in env_state: - # skip variables that already had values before this script started prepending - if name in os.environ: - continue - commands += [ - FORMAT_STR_REMOVE_LEADING_SEPARATOR.format_map({'name': name}), - FORMAT_STR_REMOVE_TRAILING_SEPARATOR.format_map({'name': name})] - return commands - - -def _set(name, value): - global env_state - env_state[name] = value - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': value}) - return [line] - - -def _set_if_unset(name, value): - global env_state - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': value}) - if env_state.get(name, os.environ.get(name)): - line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) - return [line] - - -if __name__ == '__main__': # pragma: no cover - try: - rc = main() - except RuntimeError as e: - print(str(e), file=sys.stderr) - rc = 1 - sys.exit(rc) diff --git a/WRPlayTemp/install/_local_setup_util_sh.py b/WRPlayTemp/install/_local_setup_util_sh.py deleted file mode 100644 index ff31198..0000000 --- a/WRPlayTemp/install/_local_setup_util_sh.py +++ /dev/null @@ -1,407 +0,0 @@ -# Copyright 2016-2019 Dirk Thomas -# Licensed under the Apache License, Version 2.0 - -import argparse -from collections import OrderedDict -import os -from pathlib import Path -import sys - - -FORMAT_STR_COMMENT_LINE = '# {comment}' -FORMAT_STR_SET_ENV_VAR = 'export {name}="{value}"' -FORMAT_STR_USE_ENV_VAR = '${name}' -FORMAT_STR_INVOKE_SCRIPT = 'COLCON_CURRENT_PREFIX="{prefix}" _colcon_prefix_sh_source_script "{script_path}"' -FORMAT_STR_REMOVE_LEADING_SEPARATOR = 'if [ "$(echo -n ${name} | head -c 1)" = ":" ]; then export {name}=${{{name}#?}} ; fi' -FORMAT_STR_REMOVE_TRAILING_SEPARATOR = 'if [ "$(echo -n ${name} | tail -c 1)" = ":" ]; then export {name}=${{{name}%?}} ; fi' - -DSV_TYPE_APPEND_NON_DUPLICATE = 'append-non-duplicate' -DSV_TYPE_PREPEND_NON_DUPLICATE = 'prepend-non-duplicate' -DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS = 'prepend-non-duplicate-if-exists' -DSV_TYPE_SET = 'set' -DSV_TYPE_SET_IF_UNSET = 'set-if-unset' -DSV_TYPE_SOURCE = 'source' - - -def main(argv=sys.argv[1:]): # noqa: D103 - parser = argparse.ArgumentParser( - description='Output shell commands for the packages in topological ' - 'order') - parser.add_argument( - 'primary_extension', - help='The file extension of the primary shell') - parser.add_argument( - 'additional_extension', nargs='?', - help='The additional file extension to be considered') - parser.add_argument( - '--merged-install', action='store_true', - help='All install prefixes are merged into a single location') - args = parser.parse_args(argv) - - packages = get_packages(Path(__file__).parent, args.merged_install) - - ordered_packages = order_packages(packages) - for pkg_name in ordered_packages: - if _include_comments(): - print( - FORMAT_STR_COMMENT_LINE.format_map( - {'comment': 'Package: ' + pkg_name})) - prefix = os.path.abspath(os.path.dirname(__file__)) - if not args.merged_install: - prefix = os.path.join(prefix, pkg_name) - for line in get_commands( - pkg_name, prefix, args.primary_extension, - args.additional_extension - ): - print(line) - - for line in _remove_ending_separators(): - print(line) - - -def get_packages(prefix_path, merged_install): - """ - Find packages based on colcon-specific files created during installation. - - :param Path prefix_path: The install prefix path of all packages - :param bool merged_install: The flag if the packages are all installed - directly in the prefix or if each package is installed in a subdirectory - named after the package - :returns: A mapping from the package name to the set of runtime - dependencies - :rtype: dict - """ - packages = {} - # since importing colcon_core isn't feasible here the following constant - # must match colcon_core.location.get_relative_package_index_path() - subdirectory = 'share/colcon-core/packages' - if merged_install: - # return if workspace is empty - if not (prefix_path / subdirectory).is_dir(): - return packages - # find all files in the subdirectory - for p in (prefix_path / subdirectory).iterdir(): - if not p.is_file(): - continue - if p.name.startswith('.'): - continue - add_package_runtime_dependencies(p, packages) - else: - # for each subdirectory look for the package specific file - for p in prefix_path.iterdir(): - if not p.is_dir(): - continue - if p.name.startswith('.'): - continue - p = p / subdirectory / p.name - if p.is_file(): - add_package_runtime_dependencies(p, packages) - - # remove unknown dependencies - pkg_names = set(packages.keys()) - for k in packages.keys(): - packages[k] = {d for d in packages[k] if d in pkg_names} - - return packages - - -def add_package_runtime_dependencies(path, packages): - """ - Check the path and if it exists extract the packages runtime dependencies. - - :param Path path: The resource file containing the runtime dependencies - :param dict packages: A mapping from package names to the sets of runtime - dependencies to add to - """ - content = path.read_text() - dependencies = set(content.split(os.pathsep) if content else []) - packages[path.name] = dependencies - - -def order_packages(packages): - """ - Order packages topologically. - - :param dict packages: A mapping from package name to the set of runtime - dependencies - :returns: The package names - :rtype: list - """ - # select packages with no dependencies in alphabetical order - to_be_ordered = list(packages.keys()) - ordered = [] - while to_be_ordered: - pkg_names_without_deps = [ - name for name in to_be_ordered if not packages[name]] - if not pkg_names_without_deps: - reduce_cycle_set(packages) - raise RuntimeError( - 'Circular dependency between: ' + ', '.join(sorted(packages))) - pkg_names_without_deps.sort() - pkg_name = pkg_names_without_deps[0] - to_be_ordered.remove(pkg_name) - ordered.append(pkg_name) - # remove item from dependency lists - for k in list(packages.keys()): - if pkg_name in packages[k]: - packages[k].remove(pkg_name) - return ordered - - -def reduce_cycle_set(packages): - """ - Reduce the set of packages to the ones part of the circular dependency. - - :param dict packages: A mapping from package name to the set of runtime - dependencies which is modified in place - """ - last_depended = None - while len(packages) > 0: - # get all remaining dependencies - depended = set() - for pkg_name, dependencies in packages.items(): - depended = depended.union(dependencies) - # remove all packages which are not dependent on - for name in list(packages.keys()): - if name not in depended: - del packages[name] - if last_depended: - # if remaining packages haven't changed return them - if last_depended == depended: - return packages.keys() - # otherwise reduce again - last_depended = depended - - -def _include_comments(): - # skipping comment lines when COLCON_TRACE is not set speeds up the - # processing especially on Windows - return bool(os.environ.get('COLCON_TRACE')) - - -def get_commands(pkg_name, prefix, primary_extension, additional_extension): - commands = [] - package_dsv_path = os.path.join(prefix, 'share', pkg_name, 'package.dsv') - if os.path.exists(package_dsv_path): - commands += process_dsv_file( - package_dsv_path, prefix, primary_extension, additional_extension) - return commands - - -def process_dsv_file( - dsv_path, prefix, primary_extension=None, additional_extension=None -): - commands = [] - if _include_comments(): - commands.append(FORMAT_STR_COMMENT_LINE.format_map({'comment': dsv_path})) - with open(dsv_path, 'r') as h: - content = h.read() - lines = content.splitlines() - - basenames = OrderedDict() - for i, line in enumerate(lines): - # skip over empty or whitespace-only lines - if not line.strip(): - continue - # skip over comments - if line.startswith('#'): - continue - try: - type_, remainder = line.split(';', 1) - except ValueError: - raise RuntimeError( - "Line %d in '%s' doesn't contain a semicolon separating the " - 'type from the arguments' % (i + 1, dsv_path)) - if type_ != DSV_TYPE_SOURCE: - # handle non-source lines - try: - commands += handle_dsv_types_except_source( - type_, remainder, prefix) - except RuntimeError as e: - raise RuntimeError( - "Line %d in '%s' %s" % (i + 1, dsv_path, e)) from e - else: - # group remaining source lines by basename - path_without_ext, ext = os.path.splitext(remainder) - if path_without_ext not in basenames: - basenames[path_without_ext] = set() - assert ext.startswith('.') - ext = ext[1:] - if ext in (primary_extension, additional_extension): - basenames[path_without_ext].add(ext) - - # add the dsv extension to each basename if the file exists - for basename, extensions in basenames.items(): - if not os.path.isabs(basename): - basename = os.path.join(prefix, basename) - if os.path.exists(basename + '.dsv'): - extensions.add('dsv') - - for basename, extensions in basenames.items(): - if not os.path.isabs(basename): - basename = os.path.join(prefix, basename) - if 'dsv' in extensions: - # process dsv files recursively - commands += process_dsv_file( - basename + '.dsv', prefix, primary_extension=primary_extension, - additional_extension=additional_extension) - elif primary_extension in extensions and len(extensions) == 1: - # source primary-only files - commands += [ - FORMAT_STR_INVOKE_SCRIPT.format_map({ - 'prefix': prefix, - 'script_path': basename + '.' + primary_extension})] - elif additional_extension in extensions: - # source non-primary files - commands += [ - FORMAT_STR_INVOKE_SCRIPT.format_map({ - 'prefix': prefix, - 'script_path': basename + '.' + additional_extension})] - - return commands - - -def handle_dsv_types_except_source(type_, remainder, prefix): - commands = [] - if type_ in (DSV_TYPE_SET, DSV_TYPE_SET_IF_UNSET): - try: - env_name, value = remainder.split(';', 1) - except ValueError: - raise RuntimeError( - "doesn't contain a semicolon separating the environment name " - 'from the value') - try_prefixed_value = os.path.join(prefix, value) if value else prefix - if os.path.exists(try_prefixed_value): - value = try_prefixed_value - if type_ == DSV_TYPE_SET: - commands += _set(env_name, value) - elif type_ == DSV_TYPE_SET_IF_UNSET: - commands += _set_if_unset(env_name, value) - else: - assert False - elif type_ in ( - DSV_TYPE_APPEND_NON_DUPLICATE, - DSV_TYPE_PREPEND_NON_DUPLICATE, - DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS - ): - try: - env_name_and_values = remainder.split(';') - except ValueError: - raise RuntimeError( - "doesn't contain a semicolon separating the environment name " - 'from the values') - env_name = env_name_and_values[0] - values = env_name_and_values[1:] - for value in values: - if not value: - value = prefix - elif not os.path.isabs(value): - value = os.path.join(prefix, value) - if ( - type_ == DSV_TYPE_PREPEND_NON_DUPLICATE_IF_EXISTS and - not os.path.exists(value) - ): - comment = f'skip extending {env_name} with not existing ' \ - f'path: {value}' - if _include_comments(): - commands.append( - FORMAT_STR_COMMENT_LINE.format_map({'comment': comment})) - elif type_ == DSV_TYPE_APPEND_NON_DUPLICATE: - commands += _append_unique_value(env_name, value) - else: - commands += _prepend_unique_value(env_name, value) - else: - raise RuntimeError( - 'contains an unknown environment hook type: ' + type_) - return commands - - -env_state = {} - - -def _append_unique_value(name, value): - global env_state - if name not in env_state: - if os.environ.get(name): - env_state[name] = set(os.environ[name].split(os.pathsep)) - else: - env_state[name] = set() - # append even if the variable has not been set yet, in case a shell script sets the - # same variable without the knowledge of this Python script. - # later _remove_ending_separators() will cleanup any unintentional leading separator - extend = FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) + os.pathsep - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': extend + value}) - if value not in env_state[name]: - env_state[name].add(value) - else: - if not _include_comments(): - return [] - line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) - return [line] - - -def _prepend_unique_value(name, value): - global env_state - if name not in env_state: - if os.environ.get(name): - env_state[name] = set(os.environ[name].split(os.pathsep)) - else: - env_state[name] = set() - # prepend even if the variable has not been set yet, in case a shell script sets the - # same variable without the knowledge of this Python script. - # later _remove_ending_separators() will cleanup any unintentional trailing separator - extend = os.pathsep + FORMAT_STR_USE_ENV_VAR.format_map({'name': name}) - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': value + extend}) - if value not in env_state[name]: - env_state[name].add(value) - else: - if not _include_comments(): - return [] - line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) - return [line] - - -# generate commands for removing prepended underscores -def _remove_ending_separators(): - # do nothing if the shell extension does not implement the logic - if FORMAT_STR_REMOVE_TRAILING_SEPARATOR is None: - return [] - - global env_state - commands = [] - for name in env_state: - # skip variables that already had values before this script started prepending - if name in os.environ: - continue - commands += [ - FORMAT_STR_REMOVE_LEADING_SEPARATOR.format_map({'name': name}), - FORMAT_STR_REMOVE_TRAILING_SEPARATOR.format_map({'name': name})] - return commands - - -def _set(name, value): - global env_state - env_state[name] = value - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': value}) - return [line] - - -def _set_if_unset(name, value): - global env_state - line = FORMAT_STR_SET_ENV_VAR.format_map( - {'name': name, 'value': value}) - if env_state.get(name, os.environ.get(name)): - line = FORMAT_STR_COMMENT_LINE.format_map({'comment': line}) - return [line] - - -if __name__ == '__main__': # pragma: no cover - try: - rc = main() - except RuntimeError as e: - print(str(e), file=sys.stderr) - rc = 1 - sys.exit(rc) diff --git a/WRPlayTemp/install/local_setup.bash b/WRPlayTemp/install/local_setup.bash deleted file mode 100644 index 03f0025..0000000 --- a/WRPlayTemp/install/local_setup.bash +++ /dev/null @@ -1,121 +0,0 @@ -# generated from colcon_bash/shell/template/prefix.bash.em - -# This script extends the environment with all packages contained in this -# prefix path. - -# a bash script is able to determine its own path if necessary -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - _colcon_prefix_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd)" -else - _colcon_prefix_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -_colcon_prefix_bash_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - - # get values from variable - eval _values=\"\$$_listname\" - # backup the field separator - _colcon_prefix_bash_prepend_unique_value_IFS="$IFS" - IFS=":" - # start with the new value - _all_values="$_value" - _contained_value="" - # iterate over existing values in the variable - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - # ignore duplicates of _value - if [ "$_item" = "$_value" ]; then - _contained_value=1 - continue - fi - # keep non-duplicate values - _all_values="$_all_values:$_item" - done - unset _item - if [ -z "$_contained_value" ]; then - if [ -n "$COLCON_TRACE" ]; then - if [ "$_all_values" = "$_value" ]; then - echo "export $_listname=$_value" - else - echo "export $_listname=$_value:\$$_listname" - fi - fi - fi - unset _contained_value - # restore the field separator - IFS="$_colcon_prefix_bash_prepend_unique_value_IFS" - unset _colcon_prefix_bash_prepend_unique_value_IFS - # export the updated variable - eval export $_listname=\"$_all_values\" - unset _all_values - unset _values - - unset _value - unset _listname -} - -# add this prefix to the COLCON_PREFIX_PATH -_colcon_prefix_bash_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_bash_COLCON_CURRENT_PREFIX" -unset _colcon_prefix_bash_prepend_unique_value - -# check environment variable for custom Python executable -if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then - if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then - echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" - return 1 - fi - _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" -else - # try the Python executable known at configure time - _colcon_python_executable="/usr/bin/python3" - # if it doesn't exist try a fall back - if [ ! -f "$_colcon_python_executable" ]; then - if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then - echo "error: unable to find python3 executable" - return 1 - fi - _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` - fi -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -_colcon_prefix_sh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$1" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# get all commands in topological order -_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_bash_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh bash)" -unset _colcon_python_executable -if [ -n "$COLCON_TRACE" ]; then - echo "$(declare -f _colcon_prefix_sh_source_script)" - echo "# Execute generated script:" - echo "# <<<" - echo "${_colcon_ordered_commands}" - echo "# >>>" - echo "unset _colcon_prefix_sh_source_script" -fi -eval "${_colcon_ordered_commands}" -unset _colcon_ordered_commands - -unset _colcon_prefix_sh_source_script - -unset _colcon_prefix_bash_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/local_setup.ps1 b/WRPlayTemp/install/local_setup.ps1 deleted file mode 100644 index 6f68c8d..0000000 --- a/WRPlayTemp/install/local_setup.ps1 +++ /dev/null @@ -1,55 +0,0 @@ -# generated from colcon_powershell/shell/template/prefix.ps1.em - -# This script extends the environment with all packages contained in this -# prefix path. - -# check environment variable for custom Python executable -if ($env:COLCON_PYTHON_EXECUTABLE) { - if (!(Test-Path "$env:COLCON_PYTHON_EXECUTABLE" -PathType Leaf)) { - echo "error: COLCON_PYTHON_EXECUTABLE '$env:COLCON_PYTHON_EXECUTABLE' doesn't exist" - exit 1 - } - $_colcon_python_executable="$env:COLCON_PYTHON_EXECUTABLE" -} else { - # use the Python executable known at configure time - $_colcon_python_executable="/usr/bin/python3" - # if it doesn't exist try a fall back - if (!(Test-Path "$_colcon_python_executable" -PathType Leaf)) { - if (!(Get-Command "python3" -ErrorAction SilentlyContinue)) { - echo "error: unable to find python3 executable" - exit 1 - } - $_colcon_python_executable="python3" - } -} - -# function to source another script with conditional trace output -# first argument: the path of the script -function _colcon_prefix_powershell_source_script { - param ( - $_colcon_prefix_powershell_source_script_param - ) - # source script with conditional trace output - if (Test-Path $_colcon_prefix_powershell_source_script_param) { - if ($env:COLCON_TRACE) { - echo ". '$_colcon_prefix_powershell_source_script_param'" - } - . "$_colcon_prefix_powershell_source_script_param" - } else { - Write-Error "not found: '$_colcon_prefix_powershell_source_script_param'" - } -} - -# get all commands in topological order -$_colcon_ordered_commands = & "$_colcon_python_executable" "$(Split-Path $PSCommandPath -Parent)/_local_setup_util_ps1.py" ps1 - -# execute all commands in topological order -if ($env:COLCON_TRACE) { - echo "Execute generated script:" - echo "<<<" - $_colcon_ordered_commands.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries) | Write-Output - echo ">>>" -} -if ($_colcon_ordered_commands) { - $_colcon_ordered_commands.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries) | Invoke-Expression -} diff --git a/WRPlayTemp/install/local_setup.sh b/WRPlayTemp/install/local_setup.sh deleted file mode 100644 index 37753df..0000000 --- a/WRPlayTemp/install/local_setup.sh +++ /dev/null @@ -1,137 +0,0 @@ -# generated from colcon_core/shell/template/prefix.sh.em - -# This script extends the environment with all packages contained in this -# prefix path. - -# since a plain shell script can't determine its own path when being sourced -# either use the provided COLCON_CURRENT_PREFIX -# or fall back to the build time prefix (if it exists) -_colcon_prefix_sh_COLCON_CURRENT_PREFIX="/home/balabalu/workspace/WRPlayTemp/install" -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - if [ ! -d "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX" ]; then - echo "The build time path \"$_colcon_prefix_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 - unset _colcon_prefix_sh_COLCON_CURRENT_PREFIX - return 1 - fi -else - _colcon_prefix_sh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -_colcon_prefix_sh_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - - # get values from variable - eval _values=\"\$$_listname\" - # backup the field separator - _colcon_prefix_sh_prepend_unique_value_IFS="$IFS" - IFS=":" - # start with the new value - _all_values="$_value" - _contained_value="" - # iterate over existing values in the variable - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - # ignore duplicates of _value - if [ "$_item" = "$_value" ]; then - _contained_value=1 - continue - fi - # keep non-duplicate values - _all_values="$_all_values:$_item" - done - unset _item - if [ -z "$_contained_value" ]; then - if [ -n "$COLCON_TRACE" ]; then - if [ "$_all_values" = "$_value" ]; then - echo "export $_listname=$_value" - else - echo "export $_listname=$_value:\$$_listname" - fi - fi - fi - unset _contained_value - # restore the field separator - IFS="$_colcon_prefix_sh_prepend_unique_value_IFS" - unset _colcon_prefix_sh_prepend_unique_value_IFS - # export the updated variable - eval export $_listname=\"$_all_values\" - unset _all_values - unset _values - - unset _value - unset _listname -} - -# add this prefix to the COLCON_PREFIX_PATH -_colcon_prefix_sh_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX" -unset _colcon_prefix_sh_prepend_unique_value - -# check environment variable for custom Python executable -if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then - if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then - echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" - return 1 - fi - _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" -else - # try the Python executable known at configure time - _colcon_python_executable="/usr/bin/python3" - # if it doesn't exist try a fall back - if [ ! -f "$_colcon_python_executable" ]; then - if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then - echo "error: unable to find python3 executable" - return 1 - fi - _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` - fi -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -_colcon_prefix_sh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$1" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# get all commands in topological order -_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_sh_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh)" -unset _colcon_python_executable -if [ -n "$COLCON_TRACE" ]; then - echo "_colcon_prefix_sh_source_script() { - if [ -f \"\$1\" ]; then - if [ -n \"\$COLCON_TRACE\" ]; then - echo \"# . \\\"\$1\\\"\" - fi - . \"\$1\" - else - echo \"not found: \\\"\$1\\\"\" 1>&2 - fi - }" - echo "# Execute generated script:" - echo "# <<<" - echo "${_colcon_ordered_commands}" - echo "# >>>" - echo "unset _colcon_prefix_sh_source_script" -fi -eval "${_colcon_ordered_commands}" -unset _colcon_ordered_commands - -unset _colcon_prefix_sh_source_script - -unset _colcon_prefix_sh_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/local_setup.zsh b/WRPlayTemp/install/local_setup.zsh deleted file mode 100644 index b648710..0000000 --- a/WRPlayTemp/install/local_setup.zsh +++ /dev/null @@ -1,134 +0,0 @@ -# generated from colcon_zsh/shell/template/prefix.zsh.em - -# This script extends the environment with all packages contained in this -# prefix path. - -# a zsh script is able to determine its own path if necessary -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - _colcon_prefix_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)" -else - _colcon_prefix_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to convert array-like strings into arrays -# to workaround SH_WORD_SPLIT not being set -_colcon_prefix_zsh_convert_to_array() { - local _listname=$1 - local _dollar="$" - local _split="{=" - local _to_array="(\"$_dollar$_split$_listname}\")" - eval $_listname=$_to_array -} - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -_colcon_prefix_zsh_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - - # get values from variable - eval _values=\"\$$_listname\" - # backup the field separator - _colcon_prefix_zsh_prepend_unique_value_IFS="$IFS" - IFS=":" - # start with the new value - _all_values="$_value" - _contained_value="" - # workaround SH_WORD_SPLIT not being set - _colcon_prefix_zsh_convert_to_array _values - # iterate over existing values in the variable - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - # ignore duplicates of _value - if [ "$_item" = "$_value" ]; then - _contained_value=1 - continue - fi - # keep non-duplicate values - _all_values="$_all_values:$_item" - done - unset _item - if [ -z "$_contained_value" ]; then - if [ -n "$COLCON_TRACE" ]; then - if [ "$_all_values" = "$_value" ]; then - echo "export $_listname=$_value" - else - echo "export $_listname=$_value:\$$_listname" - fi - fi - fi - unset _contained_value - # restore the field separator - IFS="$_colcon_prefix_zsh_prepend_unique_value_IFS" - unset _colcon_prefix_zsh_prepend_unique_value_IFS - # export the updated variable - eval export $_listname=\"$_all_values\" - unset _all_values - unset _values - - unset _value - unset _listname -} - -# add this prefix to the COLCON_PREFIX_PATH -_colcon_prefix_zsh_prepend_unique_value COLCON_PREFIX_PATH "$_colcon_prefix_zsh_COLCON_CURRENT_PREFIX" -unset _colcon_prefix_zsh_prepend_unique_value -unset _colcon_prefix_zsh_convert_to_array - -# check environment variable for custom Python executable -if [ -n "$COLCON_PYTHON_EXECUTABLE" ]; then - if [ ! -f "$COLCON_PYTHON_EXECUTABLE" ]; then - echo "error: COLCON_PYTHON_EXECUTABLE '$COLCON_PYTHON_EXECUTABLE' doesn't exist" - return 1 - fi - _colcon_python_executable="$COLCON_PYTHON_EXECUTABLE" -else - # try the Python executable known at configure time - _colcon_python_executable="/usr/bin/python3" - # if it doesn't exist try a fall back - if [ ! -f "$_colcon_python_executable" ]; then - if ! /usr/bin/env python3 --version > /dev/null 2> /dev/null; then - echo "error: unable to find python3 executable" - return 1 - fi - _colcon_python_executable=`/usr/bin/env python3 -c "import sys; print(sys.executable)"` - fi -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -_colcon_prefix_sh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$1" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# get all commands in topological order -_colcon_ordered_commands="$($_colcon_python_executable "$_colcon_prefix_zsh_COLCON_CURRENT_PREFIX/_local_setup_util_sh.py" sh zsh)" -unset _colcon_python_executable -if [ -n "$COLCON_TRACE" ]; then - echo "$(declare -f _colcon_prefix_sh_source_script)" - echo "# Execute generated script:" - echo "# <<<" - echo "${_colcon_ordered_commands}" - echo "# >>>" - echo "unset _colcon_prefix_sh_source_script" -fi -eval "${_colcon_ordered_commands}" -unset _colcon_ordered_commands - -unset _colcon_prefix_sh_source_script - -unset _colcon_prefix_zsh_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/setup.bash b/WRPlayTemp/install/setup.bash deleted file mode 100644 index cd68118..0000000 --- a/WRPlayTemp/install/setup.bash +++ /dev/null @@ -1,31 +0,0 @@ -# generated from colcon_bash/shell/template/prefix_chain.bash.em - -# This script extends the environment with the environment of other prefix -# paths which were sourced when this file was generated as well as all packages -# contained in this prefix path. - -# function to source another script with conditional trace output -# first argument: the path of the script -_colcon_prefix_chain_bash_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$1" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source chained prefixes -# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script -COLCON_CURRENT_PREFIX="/home/balabalu/ros2_jazzy/install" -_colcon_prefix_chain_bash_source_script "$COLCON_CURRENT_PREFIX/local_setup.bash" - -# source this prefix -# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script -COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd)" -_colcon_prefix_chain_bash_source_script "$COLCON_CURRENT_PREFIX/local_setup.bash" - -unset COLCON_CURRENT_PREFIX -unset _colcon_prefix_chain_bash_source_script diff --git a/WRPlayTemp/install/setup.ps1 b/WRPlayTemp/install/setup.ps1 deleted file mode 100644 index 8d8d067..0000000 --- a/WRPlayTemp/install/setup.ps1 +++ /dev/null @@ -1,29 +0,0 @@ -# generated from colcon_powershell/shell/template/prefix_chain.ps1.em - -# This script extends the environment with the environment of other prefix -# paths which were sourced when this file was generated as well as all packages -# contained in this prefix path. - -# function to source another script with conditional trace output -# first argument: the path of the script -function _colcon_prefix_chain_powershell_source_script { - param ( - $_colcon_prefix_chain_powershell_source_script_param - ) - # source script with conditional trace output - if (Test-Path $_colcon_prefix_chain_powershell_source_script_param) { - if ($env:COLCON_TRACE) { - echo ". '$_colcon_prefix_chain_powershell_source_script_param'" - } - . "$_colcon_prefix_chain_powershell_source_script_param" - } else { - Write-Error "not found: '$_colcon_prefix_chain_powershell_source_script_param'" - } -} - -# source chained prefixes -_colcon_prefix_chain_powershell_source_script "/home/balabalu/ros2_jazzy/install\local_setup.ps1" - -# source this prefix -$env:COLCON_CURRENT_PREFIX=(Split-Path $PSCommandPath -Parent) -_colcon_prefix_chain_powershell_source_script "$env:COLCON_CURRENT_PREFIX\local_setup.ps1" diff --git a/WRPlayTemp/install/setup.sh b/WRPlayTemp/install/setup.sh deleted file mode 100644 index 3d0f063..0000000 --- a/WRPlayTemp/install/setup.sh +++ /dev/null @@ -1,45 +0,0 @@ -# generated from colcon_core/shell/template/prefix_chain.sh.em - -# This script extends the environment with the environment of other prefix -# paths which were sourced when this file was generated as well as all packages -# contained in this prefix path. - -# since a plain shell script can't determine its own path when being sourced -# either use the provided COLCON_CURRENT_PREFIX -# or fall back to the build time prefix (if it exists) -_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX=/home/balabalu/workspace/WRPlayTemp/install -if [ ! -z "$COLCON_CURRENT_PREFIX" ]; then - _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -elif [ ! -d "$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX" ]; then - echo "The build time path \"$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 - unset _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX - return 1 -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -_colcon_prefix_chain_sh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$1" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source chained prefixes -# setting COLCON_CURRENT_PREFIX avoids relying on the build time prefix of the sourced script -COLCON_CURRENT_PREFIX="/home/balabalu/ros2_jazzy/install" -_colcon_prefix_chain_sh_source_script "$COLCON_CURRENT_PREFIX/local_setup.sh" - - -# source this prefix -# setting COLCON_CURRENT_PREFIX avoids relying on the build time prefix of the sourced script -COLCON_CURRENT_PREFIX="$_colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX" -_colcon_prefix_chain_sh_source_script "$COLCON_CURRENT_PREFIX/local_setup.sh" - -unset _colcon_prefix_chain_sh_COLCON_CURRENT_PREFIX -unset _colcon_prefix_chain_sh_source_script -unset COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/setup.zsh b/WRPlayTemp/install/setup.zsh deleted file mode 100644 index d380cc7..0000000 --- a/WRPlayTemp/install/setup.zsh +++ /dev/null @@ -1,31 +0,0 @@ -# generated from colcon_zsh/shell/template/prefix_chain.zsh.em - -# This script extends the environment with the environment of other prefix -# paths which were sourced when this file was generated as well as all packages -# contained in this prefix path. - -# function to source another script with conditional trace output -# first argument: the path of the script -_colcon_prefix_chain_zsh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$1" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source chained prefixes -# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script -COLCON_CURRENT_PREFIX="/home/balabalu/ros2_jazzy/install" -_colcon_prefix_chain_zsh_source_script "$COLCON_CURRENT_PREFIX/local_setup.zsh" - -# source this prefix -# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced script -COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd)" -_colcon_prefix_chain_zsh_source_script "$COLCON_CURRENT_PREFIX/local_setup.zsh" - -unset COLCON_CURRENT_PREFIX -unset _colcon_prefix_chain_zsh_source_script diff --git a/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock b/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock deleted file mode 100644 index 25ce83a..0000000 --- a/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock +++ /dev/null @@ -1 +0,0 @@ -ament_lint_auto;ament_lint_common \ No newline at end of file diff --git a/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock b/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock b/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock deleted file mode 100644 index 63599b8..0000000 --- a/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock +++ /dev/null @@ -1 +0,0 @@ -/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format \ No newline at end of file diff --git a/WRPlayTemp/install/wrover_mock/share/colcon-core/packages/wrover_mock b/WRPlayTemp/install/wrover_mock/share/colcon-core/packages/wrover_mock deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake b/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake deleted file mode 100644 index 7beb732..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake +++ /dev/null @@ -1,14 +0,0 @@ -# generated from ament/cmake/core/templates/nameConfig-version.cmake.in -set(PACKAGE_VERSION "0.0.0") - -set(PACKAGE_VERSION_EXACT False) -set(PACKAGE_VERSION_COMPATIBLE False) - -if("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_EXACT True) - set(PACKAGE_VERSION_COMPATIBLE True) -endif() - -if("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}") - set(PACKAGE_VERSION_COMPATIBLE True) -endif() diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake b/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake deleted file mode 100644 index cbbb710..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake +++ /dev/null @@ -1,42 +0,0 @@ -# generated from ament/cmake/core/templates/nameConfig.cmake.in - -# prevent multiple inclusion -if(_wrover_mock_CONFIG_INCLUDED) - # ensure to keep the found flag the same - if(NOT DEFINED wrover_mock_FOUND) - # explicitly set it to FALSE, otherwise CMake will set it to TRUE - set(wrover_mock_FOUND FALSE) - elseif(NOT wrover_mock_FOUND) - # use separate condition to avoid uninitialized variable warning - set(wrover_mock_FOUND FALSE) - endif() - return() -endif() -set(_wrover_mock_CONFIG_INCLUDED TRUE) - -# output package information -if(NOT wrover_mock_FIND_QUIETLY) - message(STATUS "Found wrover_mock: 0.0.0 (${wrover_mock_DIR})") -endif() - -# warn when using a deprecated package -if(NOT "" STREQUAL "") - set(_msg "Package 'wrover_mock' is deprecated") - # append custom deprecation text if available - if(NOT "" STREQUAL "TRUE") - set(_msg "${_msg} ()") - endif() - # optionally quiet the deprecation message - if(NOT wrover_mock_DEPRECATED_QUIET) - message(DEPRECATION "${_msg}") - endif() -endif() - -# flag package as ament-based to distinguish it after being find_package()-ed -set(wrover_mock_FOUND_AMENT_PACKAGE TRUE) - -# include all config extra files -set(_extras "") -foreach(_extra ${_extras}) - include("${wrover_mock_DIR}/${_extra}") -endforeach() diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv b/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv deleted file mode 100644 index 79d4c95..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate;AMENT_PREFIX_PATH; diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh deleted file mode 120000 index a0be1c9..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh +++ /dev/null @@ -1 +0,0 @@ -/home/balabalu/ros2_jazzy/src/ament/ament_cmake/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh \ No newline at end of file diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv b/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv deleted file mode 100644 index b94426a..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate-if-exists;PATH;bin diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh deleted file mode 120000 index 4b14006..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh +++ /dev/null @@ -1 +0,0 @@ -/home/balabalu/ros2_jazzy/src/ament/ament_cmake/ament_cmake_core/cmake/environment_hooks/environment/path.sh \ No newline at end of file diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.dsv b/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.dsv deleted file mode 100644 index e119f32..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.dsv +++ /dev/null @@ -1 +0,0 @@ -prepend-non-duplicate;CMAKE_PREFIX_PATH; diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.ps1 b/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.ps1 deleted file mode 100644 index d03facc..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.ps1 +++ /dev/null @@ -1,3 +0,0 @@ -# generated from colcon_powershell/shell/template/hook_prepend_value.ps1.em - -colcon_prepend_unique_value CMAKE_PREFIX_PATH "$env:COLCON_CURRENT_PREFIX" diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.sh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.sh deleted file mode 100644 index a948e68..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.sh +++ /dev/null @@ -1,3 +0,0 @@ -# generated from colcon_core/shell/template/hook_prepend_value.sh.em - -_colcon_prepend_unique_value CMAKE_PREFIX_PATH "$COLCON_CURRENT_PREFIX" diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash b/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash deleted file mode 100644 index 49782f2..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash +++ /dev/null @@ -1,46 +0,0 @@ -# generated from ament_package/template/package_level/local_setup.bash.in - -# source local_setup.sh from same directory as this file -_this_path=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" && pwd) -# provide AMENT_CURRENT_PREFIX to shell script -AMENT_CURRENT_PREFIX=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." && pwd) -# store AMENT_CURRENT_PREFIX to restore it before each environment hook -_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX - -# trace output -if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then - echo "# . \"$_this_path/local_setup.sh\"" -fi -. "$_this_path/local_setup.sh" -unset _this_path - -# unset AMENT_ENVIRONMENT_HOOKS -# if not appending to them for return -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - unset AMENT_ENVIRONMENT_HOOKS -fi - -# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks -AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX -# list all environment hooks of this package - -# source all shell-specific environment hooks of this package -# if not returning them -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - _package_local_setup_IFS=$IFS - IFS=":" - for _hook in $AMENT_ENVIRONMENT_HOOKS; do - # restore AMENT_CURRENT_PREFIX for each environment hook - AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX - # restore IFS before sourcing other files - IFS=$_package_local_setup_IFS - . "$_hook" - done - unset _hook - IFS=$_package_local_setup_IFS - unset _package_local_setup_IFS - unset AMENT_ENVIRONMENT_HOOKS -fi - -unset _package_local_setup_AMENT_CURRENT_PREFIX -unset AMENT_CURRENT_PREFIX diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv b/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv deleted file mode 100644 index d005f5c..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv +++ /dev/null @@ -1,2 +0,0 @@ -source;share/wrover_mock/environment/ament_prefix_path.sh -source;share/wrover_mock/environment/path.sh diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh deleted file mode 100644 index 546d850..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh +++ /dev/null @@ -1,184 +0,0 @@ -# generated from ament_package/template/package_level/local_setup.sh.in - -# since this file is sourced use either the provided AMENT_CURRENT_PREFIX -# or fall back to the destination set at configure time -: ${AMENT_CURRENT_PREFIX:="/home/balabalu/workspace/WRPlayTemp/install/wrover_mock"} -if [ ! -d "$AMENT_CURRENT_PREFIX" ]; then - if [ -z "$COLCON_CURRENT_PREFIX" ]; then - echo "The compile time prefix path '$AMENT_CURRENT_PREFIX' doesn't " \ - "exist. Consider sourcing a different extension than '.sh'." 1>&2 - else - AMENT_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" - fi -fi - -# function to append values to environment variables -# using colons as separators and avoiding leading separators -ament_append_value() { - # arguments - _listname="$1" - _value="$2" - #echo "listname $_listname" - #eval echo "list value \$$_listname" - #echo "value $_value" - - # avoid leading separator - eval _values=\"\$$_listname\" - if [ -z "$_values" ]; then - eval export $_listname=\"$_value\" - #eval echo "set list \$$_listname" - else - # field separator must not be a colon - _ament_append_value_IFS=$IFS - unset IFS - eval export $_listname=\"\$$_listname:$_value\" - #eval echo "append list \$$_listname" - IFS=$_ament_append_value_IFS - unset _ament_append_value_IFS - fi - unset _values - - unset _value - unset _listname -} - -# function to append non-duplicate values to environment variables -# using colons as separators and avoiding leading separators -ament_append_unique_value() { - # arguments - _listname=$1 - _value=$2 - #echo "listname $_listname" - #eval echo "list value \$$_listname" - #echo "value $_value" - - # check if the list contains the value - eval _values=\$$_listname - _duplicate= - _ament_append_unique_value_IFS=$IFS - IFS=":" - if [ "$AMENT_SHELL" = "zsh" ]; then - ament_zsh_to_array _values - fi - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - if [ $_item = $_value ]; then - _duplicate=1 - fi - done - unset _item - - # append only non-duplicates - if [ -z "$_duplicate" ]; then - # avoid leading separator - if [ -z "$_values" ]; then - eval $_listname=\"$_value\" - #eval echo "set list \$$_listname" - else - # field separator must not be a colon - unset IFS - eval $_listname=\"\$$_listname:$_value\" - #eval echo "append list \$$_listname" - fi - fi - IFS=$_ament_append_unique_value_IFS - unset _ament_append_unique_value_IFS - unset _duplicate - unset _values - - unset _value - unset _listname -} - -# function to prepend non-duplicate values to environment variables -# using colons as separators and avoiding trailing separators -ament_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - #echo "listname $_listname" - #eval echo "list value \$$_listname" - #echo "value $_value" - - # check if the list contains the value - eval _values=\"\$$_listname\" - _duplicate= - _ament_prepend_unique_value_IFS=$IFS - IFS=":" - if [ "$AMENT_SHELL" = "zsh" ]; then - ament_zsh_to_array _values - fi - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - if [ "$_item" = "$_value" ]; then - _duplicate=1 - fi - done - unset _item - - # prepend only non-duplicates - if [ -z "$_duplicate" ]; then - # avoid trailing separator - if [ -z "$_values" ]; then - eval export $_listname=\"$_value\" - #eval echo "set list \$$_listname" - else - # field separator must not be a colon - unset IFS - eval export $_listname=\"$_value:\$$_listname\" - #eval echo "prepend list \$$_listname" - fi - fi - IFS=$_ament_prepend_unique_value_IFS - unset _ament_prepend_unique_value_IFS - unset _duplicate - unset _values - - unset _value - unset _listname -} - -# unset AMENT_ENVIRONMENT_HOOKS -# if not appending to them for return -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - unset AMENT_ENVIRONMENT_HOOKS -fi - -# list all environment hooks of this package -ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/wrover_mock/environment/ament_prefix_path.sh" -ament_append_value AMENT_ENVIRONMENT_HOOKS "$AMENT_CURRENT_PREFIX/share/wrover_mock/environment/path.sh" - -# source all shell-specific environment hooks of this package -# if not returning them -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - _package_local_setup_IFS=$IFS - IFS=":" - if [ "$AMENT_SHELL" = "zsh" ]; then - ament_zsh_to_array AMENT_ENVIRONMENT_HOOKS - fi - for _hook in $AMENT_ENVIRONMENT_HOOKS; do - if [ -f "$_hook" ]; then - # restore IFS before sourcing other files - IFS=$_package_local_setup_IFS - # trace output - if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then - echo "# . \"$_hook\"" - fi - . "$_hook" - fi - done - unset _hook - IFS=$_package_local_setup_IFS - unset _package_local_setup_IFS - unset AMENT_ENVIRONMENT_HOOKS -fi - -# reset AMENT_CURRENT_PREFIX after each package -# allowing to source multiple package-level setup files -unset AMENT_CURRENT_PREFIX diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh deleted file mode 100644 index fe161be..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh +++ /dev/null @@ -1,59 +0,0 @@ -# generated from ament_package/template/package_level/local_setup.zsh.in - -AMENT_SHELL=zsh - -# source local_setup.sh from same directory as this file -_this_path=$(builtin cd -q "`dirname "${(%):-%N}"`" > /dev/null && pwd) -# provide AMENT_CURRENT_PREFIX to shell script -AMENT_CURRENT_PREFIX=$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd) -# store AMENT_CURRENT_PREFIX to restore it before each environment hook -_package_local_setup_AMENT_CURRENT_PREFIX=$AMENT_CURRENT_PREFIX - -# function to convert array-like strings into arrays -# to wordaround SH_WORD_SPLIT not being set -ament_zsh_to_array() { - local _listname=$1 - local _dollar="$" - local _split="{=" - local _to_array="(\"$_dollar$_split$_listname}\")" - eval $_listname=$_to_array -} - -# trace output -if [ -n "$AMENT_TRACE_SETUP_FILES" ]; then - echo "# . \"$_this_path/local_setup.sh\"" -fi -# the package-level local_setup file unsets AMENT_CURRENT_PREFIX -. "$_this_path/local_setup.sh" -unset _this_path - -# unset AMENT_ENVIRONMENT_HOOKS -# if not appending to them for return -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - unset AMENT_ENVIRONMENT_HOOKS -fi - -# restore AMENT_CURRENT_PREFIX before evaluating the environment hooks -AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX -# list all environment hooks of this package - -# source all shell-specific environment hooks of this package -# if not returning them -if [ -z "$AMENT_RETURN_ENVIRONMENT_HOOKS" ]; then - _package_local_setup_IFS=$IFS - IFS=":" - for _hook in $AMENT_ENVIRONMENT_HOOKS; do - # restore AMENT_CURRENT_PREFIX for each environment hook - AMENT_CURRENT_PREFIX=$_package_local_setup_AMENT_CURRENT_PREFIX - # restore IFS before sourcing other files - IFS=$_package_local_setup_IFS - . "$_hook" - done - unset _hook - IFS=$_package_local_setup_IFS - unset _package_local_setup_IFS - unset AMENT_ENVIRONMENT_HOOKS -fi - -unset _package_local_setup_AMENT_CURRENT_PREFIX -unset AMENT_CURRENT_PREFIX diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.bash b/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.bash deleted file mode 100644 index 09758aa..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.bash +++ /dev/null @@ -1,39 +0,0 @@ -# generated from colcon_bash/shell/template/package.bash.em - -# This script extends the environment for this package. - -# a bash script is able to determine its own path if necessary -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - # the prefix is two levels up from the package specific share directory - _colcon_package_bash_COLCON_CURRENT_PREFIX="$(builtin cd "`dirname "${BASH_SOURCE[0]}"`/../.." > /dev/null && pwd)" -else - _colcon_package_bash_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -_colcon_package_bash_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$@" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source sh script of this package -_colcon_package_bash_source_script "$_colcon_package_bash_COLCON_CURRENT_PREFIX/share/wrover_mock/package.sh" - -# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts -COLCON_CURRENT_PREFIX="$_colcon_package_bash_COLCON_CURRENT_PREFIX" - -# source bash hooks -_colcon_package_bash_source_script "$COLCON_CURRENT_PREFIX/share/wrover_mock/local_setup.bash" - -unset COLCON_CURRENT_PREFIX - -unset _colcon_package_bash_source_script -unset _colcon_package_bash_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv b/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv deleted file mode 100644 index 0161e6e..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv +++ /dev/null @@ -1,8 +0,0 @@ -source;share/wrover_mock/hook/cmake_prefix_path.ps1 -source;share/wrover_mock/hook/cmake_prefix_path.dsv -source;share/wrover_mock/hook/cmake_prefix_path.sh -source;share/wrover_mock/local_setup.bash -source;share/wrover_mock/local_setup.dsv -source;share/wrover_mock/local_setup.ps1 -source;share/wrover_mock/local_setup.sh -source;share/wrover_mock/local_setup.zsh diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.ps1 b/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.ps1 deleted file mode 100644 index 537ca00..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.ps1 +++ /dev/null @@ -1,116 +0,0 @@ -# generated from colcon_powershell/shell/template/package.ps1.em - -# function to append a value to a variable -# which uses colons as separators -# duplicates as well as leading separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -function colcon_append_unique_value { - param ( - $_listname, - $_value - ) - - # get values from variable - if (Test-Path Env:$_listname) { - $_values=(Get-Item env:$_listname).Value - } else { - $_values="" - } - $_duplicate="" - # start with no values - $_all_values="" - # iterate over existing values in the variable - if ($_values) { - $_values.Split(";") | ForEach { - # not an empty string - if ($_) { - # not a duplicate of _value - if ($_ -eq $_value) { - $_duplicate="1" - } - if ($_all_values) { - $_all_values="${_all_values};$_" - } else { - $_all_values="$_" - } - } - } - } - # append only non-duplicates - if (!$_duplicate) { - # avoid leading separator - if ($_all_values) { - $_all_values="${_all_values};${_value}" - } else { - $_all_values="${_value}" - } - } - - # export the updated variable - Set-Item env:\$_listname -Value "$_all_values" -} - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -function colcon_prepend_unique_value { - param ( - $_listname, - $_value - ) - - # get values from variable - if (Test-Path Env:$_listname) { - $_values=(Get-Item env:$_listname).Value - } else { - $_values="" - } - # start with the new value - $_all_values="$_value" - # iterate over existing values in the variable - if ($_values) { - $_values.Split(";") | ForEach { - # not an empty string - if ($_) { - # not a duplicate of _value - if ($_ -ne $_value) { - # keep non-duplicate values - $_all_values="${_all_values};$_" - } - } - } - } - # export the updated variable - Set-Item env:\$_listname -Value "$_all_values" -} - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -function colcon_package_source_powershell_script { - param ( - $_colcon_package_source_powershell_script - ) - # source script with conditional trace output - if (Test-Path $_colcon_package_source_powershell_script) { - if ($env:COLCON_TRACE) { - echo ". '$_colcon_package_source_powershell_script'" - } - . "$_colcon_package_source_powershell_script" - } else { - Write-Error "not found: '$_colcon_package_source_powershell_script'" - } -} - - -# a powershell script is able to determine its own path -# the prefix is two levels up from the package specific share directory -$env:COLCON_CURRENT_PREFIX=(Get-Item $PSCommandPath).Directory.Parent.Parent.FullName - -colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/wrover_mock/hook/cmake_prefix_path.ps1" -colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/wrover_mock/local_setup.ps1" - -Remove-Item Env:\COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.sh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.sh deleted file mode 100644 index 4cb2995..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.sh +++ /dev/null @@ -1,87 +0,0 @@ -# generated from colcon_core/shell/template/package.sh.em - -# This script extends the environment for this package. - -# function to prepend a value to a variable -# which uses colons as separators -# duplicates as well as trailing separators are avoided -# first argument: the name of the result variable -# second argument: the value to be prepended -_colcon_prepend_unique_value() { - # arguments - _listname="$1" - _value="$2" - - # get values from variable - eval _values=\"\$$_listname\" - # backup the field separator - _colcon_prepend_unique_value_IFS=$IFS - IFS=":" - # start with the new value - _all_values="$_value" - # workaround SH_WORD_SPLIT not being set in zsh - if [ "$(command -v colcon_zsh_convert_to_array)" ]; then - colcon_zsh_convert_to_array _values - fi - # iterate over existing values in the variable - for _item in $_values; do - # ignore empty strings - if [ -z "$_item" ]; then - continue - fi - # ignore duplicates of _value - if [ "$_item" = "$_value" ]; then - continue - fi - # keep non-duplicate values - _all_values="$_all_values:$_item" - done - unset _item - # restore the field separator - IFS=$_colcon_prepend_unique_value_IFS - unset _colcon_prepend_unique_value_IFS - # export the updated variable - eval export $_listname=\"$_all_values\" - unset _all_values - unset _values - - unset _value - unset _listname -} - -# since a plain shell script can't determine its own path when being sourced -# either use the provided COLCON_CURRENT_PREFIX -# or fall back to the build time prefix (if it exists) -_colcon_package_sh_COLCON_CURRENT_PREFIX="/home/balabalu/workspace/WRPlayTemp/install/wrover_mock" -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - if [ ! -d "$_colcon_package_sh_COLCON_CURRENT_PREFIX" ]; then - echo "The build time path \"$_colcon_package_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2 - unset _colcon_package_sh_COLCON_CURRENT_PREFIX - return 1 - fi - COLCON_CURRENT_PREFIX="$_colcon_package_sh_COLCON_CURRENT_PREFIX" -fi -unset _colcon_package_sh_COLCON_CURRENT_PREFIX - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -_colcon_package_sh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$@" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# source sh hooks -_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/wrover_mock/hook/cmake_prefix_path.sh" -_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/wrover_mock/local_setup.sh" - -unset _colcon_package_sh_source_script -unset COLCON_CURRENT_PREFIX - -# do not unset _colcon_prepend_unique_value since it might be used by non-primary shell hooks diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.zsh b/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.zsh deleted file mode 100644 index 891dd01..0000000 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.zsh +++ /dev/null @@ -1,50 +0,0 @@ -# generated from colcon_zsh/shell/template/package.zsh.em - -# This script extends the environment for this package. - -# a zsh script is able to determine its own path if necessary -if [ -z "$COLCON_CURRENT_PREFIX" ]; then - # the prefix is two levels up from the package specific share directory - _colcon_package_zsh_COLCON_CURRENT_PREFIX="$(builtin cd -q "`dirname "${(%):-%N}"`/../.." > /dev/null && pwd)" -else - _colcon_package_zsh_COLCON_CURRENT_PREFIX="$COLCON_CURRENT_PREFIX" -fi - -# function to source another script with conditional trace output -# first argument: the path of the script -# additional arguments: arguments to the script -_colcon_package_zsh_source_script() { - if [ -f "$1" ]; then - if [ -n "$COLCON_TRACE" ]; then - echo "# . \"$1\"" - fi - . "$@" - else - echo "not found: \"$1\"" 1>&2 - fi -} - -# function to convert array-like strings into arrays -# to workaround SH_WORD_SPLIT not being set -colcon_zsh_convert_to_array() { - local _listname=$1 - local _dollar="$" - local _split="{=" - local _to_array="(\"$_dollar$_split$_listname}\")" - eval $_listname=$_to_array -} - -# source sh script of this package -_colcon_package_zsh_source_script "$_colcon_package_zsh_COLCON_CURRENT_PREFIX/share/wrover_mock/package.sh" -unset convert_zsh_to_array - -# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts -COLCON_CURRENT_PREFIX="$_colcon_package_zsh_COLCON_CURRENT_PREFIX" - -# source zsh hooks -_colcon_package_zsh_source_script "$COLCON_CURRENT_PREFIX/share/wrover_mock/local_setup.zsh" - -unset COLCON_CURRENT_PREFIX - -unset _colcon_package_zsh_source_script -unset _colcon_package_zsh_COLCON_CURRENT_PREFIX diff --git a/WRPlayTemp/log/COLCON_IGNORE b/WRPlayTemp/log/COLCON_IGNORE deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/events.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/events.log deleted file mode 100644 index 3da72f6..0000000 --- a/WRPlayTemp/log/build_2024-07-03_19-59-10/events.log +++ /dev/null @@ -1,122 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.002188] (wrover_mock) JobQueued: {'identifier': 'wrover_mock', 'dependencies': OrderedDict()} -[0.002242] (wrover_mock) JobStarted: {'identifier': 'wrover_mock'} -[0.106820] (-) TimerEvent: {} -[0.186038] (wrover_mock) JobProgress: {'identifier': 'wrover_mock', 'progress': 'cmake'} -[0.187727] (wrover_mock) Command: {'cmd': ['/usr/bin/cmake', '/home/balabalu/workspace/WRPlayTemp/src/wrover_mock', '-DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'env': OrderedDict({'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/a90ec0f0_b34e_425a_af24_b14f4aa11342', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format'}), 'shell': False} -[0.212405] (-) TimerEvent: {} -[0.324618] (-) TimerEvent: {} -[0.434435] (-) TimerEvent: {} -[0.541575] (-) TimerEvent: {} -[0.647116] (-) TimerEvent: {} -[0.757897] (-) TimerEvent: {} -[0.859153] (-) TimerEvent: {} -[0.915595] (wrover_mock) StdoutLine: {'line': b'-- The C compiler identification is GNU 13.2.0\n'} -[0.969749] (-) TimerEvent: {} -[1.081159] (-) TimerEvent: {} -[1.190651] (-) TimerEvent: {} -[1.297821] (-) TimerEvent: {} -[1.403736] (-) TimerEvent: {} -[1.505149] (-) TimerEvent: {} -[1.599083] (wrover_mock) StdoutLine: {'line': b'-- The CXX compiler identification is GNU 13.2.0\n'} -[1.605750] (-) TimerEvent: {} -[1.708847] (-) TimerEvent: {} -[1.739786] (wrover_mock) StdoutLine: {'line': b'-- Detecting C compiler ABI info\n'} -[1.810224] (-) TimerEvent: {} -[1.911786] (-) TimerEvent: {} -[2.015031] (-) TimerEvent: {} -[2.116931] (-) TimerEvent: {} -[2.219347] (-) TimerEvent: {} -[2.296822] (wrover_mock) StdoutLine: {'line': b'-- Detecting C compiler ABI info - done\n'} -[2.314715] (wrover_mock) StdoutLine: {'line': b'-- Check for working C compiler: /usr/bin/cc - skipped\n'} -[2.319637] (-) TimerEvent: {} -[2.324640] (wrover_mock) StdoutLine: {'line': b'-- Detecting C compile features\n'} -[2.327169] (wrover_mock) StdoutLine: {'line': b'-- Detecting C compile features - done\n'} -[2.385174] (wrover_mock) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info\n'} -[2.421605] (-) TimerEvent: {} -[2.522261] (-) TimerEvent: {} -[2.625177] (-) TimerEvent: {} -[2.726012] (-) TimerEvent: {} -[2.845108] (-) TimerEvent: {} -[2.873091] (wrover_mock) StdoutLine: {'line': b'-- Detecting CXX compiler ABI info - done\n'} -[2.889217] (wrover_mock) StdoutLine: {'line': b'-- Check for working CXX compiler: /usr/bin/c++ - skipped\n'} -[2.891564] (wrover_mock) StdoutLine: {'line': b'-- Detecting CXX compile features\n'} -[2.893788] (wrover_mock) StdoutLine: {'line': b'-- Detecting CXX compile features - done\n'} -[2.951627] (-) TimerEvent: {} -[3.033136] (wrover_mock) StdoutLine: {'line': b'-- Found ament_cmake: 2.5.0 (/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake)\n'} -[3.052338] (-) TimerEvent: {} -[3.155441] (-) TimerEvent: {} -[3.257895] (-) TimerEvent: {} -[3.406850] (-) TimerEvent: {} -[3.528699] (-) TimerEvent: {} -[3.638082] (-) TimerEvent: {} -[3.744254] (-) TimerEvent: {} -[3.864526] (-) TimerEvent: {} -[4.011861] (-) TimerEvent: {} -[4.121364] (-) TimerEvent: {} -[4.222096] (-) TimerEvent: {} -[4.325021] (-) TimerEvent: {} -[4.427076] (-) TimerEvent: {} -[4.544290] (-) TimerEvent: {} -[4.647100] (-) TimerEvent: {} -[4.753784] (-) TimerEvent: {} -[4.905917] (-) TimerEvent: {} -[4.938483] (wrover_mock) StdoutLine: {'line': b'-- Found Python3: /usr/bin/python3 (found version "3.12.3") found components: Interpreter \n'} -[5.004886] (-) TimerEvent: {} -[5.108830] (-) TimerEvent: {} -[5.211774] (-) TimerEvent: {} -[5.318367] (-) TimerEvent: {} -[5.431973] (-) TimerEvent: {} -[5.535649] (-) TimerEvent: {} -[5.636697] (-) TimerEvent: {} -[5.737898] (-) TimerEvent: {} -[5.846684] (-) TimerEvent: {} -[5.948689] (-) TimerEvent: {} -[6.094843] (-) TimerEvent: {} -[6.255981] (-) TimerEvent: {} -[6.468882] (-) TimerEvent: {} -[6.609176] (-) TimerEvent: {} -[6.610841] (wrover_mock) StdoutLine: {'line': b'-- Found ament_lint_auto: 0.17.0 (/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake)\n'} -[6.709940] (-) TimerEvent: {} -[6.992893] (-) TimerEvent: {} -[7.103863] (-) TimerEvent: {} -[7.344301] (-) TimerEvent: {} -[7.493034] (-) TimerEvent: {} -[7.573268] (wrover_mock) StdoutLine: {'line': b"-- Added test 'lint_cmake' to check CMake code style\n"} -[7.597523] (-) TimerEvent: {} -[7.598661] (wrover_mock) StdoutLine: {'line': b"-- Added test 'xmllint' to check XML markup files\n"} -[7.646196] (wrover_mock) StdoutLine: {'line': b'-- Configuring done (7.2s)\n'} -[7.658056] (wrover_mock) StdoutLine: {'line': b'-- Generating done (0.0s)\n'} -[7.659956] (wrover_mock) StdoutLine: {'line': b'-- Build files have been written to: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock\n'} -[7.676550] (wrover_mock) CommandEnded: {'returncode': 0} -[7.677771] (wrover_mock) JobProgress: {'identifier': 'wrover_mock', 'progress': 'build'} -[7.677816] (wrover_mock) Command: {'cmd': ['/usr/bin/cmake', '--build', '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', '--', '-j5', '-l5'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'env': OrderedDict({'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/a90ec0f0_b34e_425a_af24_b14f4aa11342', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format'}), 'shell': False} -[7.704683] (-) TimerEvent: {} -[7.806311] (-) TimerEvent: {} -[7.908090] (-) TimerEvent: {} -[7.914510] (wrover_mock) CommandEnded: {'returncode': 0} -[8.008637] (-) TimerEvent: {} -[8.048065] (wrover_mock) JobProgress: {'identifier': 'wrover_mock', 'progress': 'install'} -[8.106346] (wrover_mock) Command: {'cmd': ['/usr/bin/cmake', '--install', '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'env': OrderedDict({'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/a90ec0f0_b34e_425a_af24_b14f4aa11342', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format'}), 'shell': False} -[8.109955] (-) TimerEvent: {} -[8.153837] (wrover_mock) StdoutLine: {'line': b'-- Install configuration: ""\n'} -[8.154929] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock\n'} -[8.155086] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock\n'} -[8.155190] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh\n'} -[8.156854] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv\n'} -[8.157023] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh\n'} -[8.157260] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv\n'} -[8.157389] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash\n'} -[8.157997] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh\n'} -[8.158466] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh\n'} -[8.159366] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv\n'} -[8.159500] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv\n'} -[8.160089] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock\n'} -[8.160798] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake\n'} -[8.161074] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake\n'} -[8.161979] (wrover_mock) StdoutLine: {'line': b'-- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml\n'} -[8.167238] (wrover_mock) CommandEnded: {'returncode': 0} -[8.242641] (-) TimerEvent: {} -[8.343785] (-) TimerEvent: {} -[8.391373] (wrover_mock) JobEnded: {'identifier': 'wrover_mock', 'rc': 0} -[8.397278] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/logger_all.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/logger_all.log deleted file mode 100644 index 3e0decb..0000000 --- a/WRPlayTemp/log/build_2024-07-03_19-59-10/logger_all.log +++ /dev/null @@ -1,140 +0,0 @@ -[0.717s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.717s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[1.070s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[1.071s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[1.071s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[1.071s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[1.071s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[1.071s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[1.071s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[1.071s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[1.072s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[1.072s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[1.072s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[1.072s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[1.073s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[1.073s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[1.073s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[1.073s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[1.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[1.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[1.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[1.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[1.162s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[1.163s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[1.163s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[1.163s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[1.163s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[1.163s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[1.163s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[1.164s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[1.164s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[1.164s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[1.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[1.164s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[1.166s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[1.167s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[1.167s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[1.167s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[1.167s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[1.167s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[1.167s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[1.168s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[1.168s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[1.168s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[1.168s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[1.168s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[1.168s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extensions ['ignore', 'ignore_ament_install'] -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extension 'ignore' -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extension 'ignore_ament_install' -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extensions ['colcon_pkg'] -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extension 'colcon_pkg' -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extensions ['colcon_meta'] -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extension 'colcon_meta' -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extensions ['ros'] -[1.169s] Level 1:colcon.colcon_core.package_identification:_identify(src/wrover_mock) by extension 'ros' -[1.178s] DEBUG:colcon.colcon_core.package_identification:Package 'src/wrover_mock' with type 'ros.ament_cmake' and name 'wrover_mock' -[1.178s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[1.178s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[1.178s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[1.178s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[1.178s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[1.271s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[1.272s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[1.375s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[1.402s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'cmake_args' from command line to 'None' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'cmake_target' from command line to 'None' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'cmake_clean_cache' from command line to 'False' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'cmake_clean_first' from command line to 'False' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'cmake_force_configure' from command line to 'False' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'ament_cmake_args' from command line to 'None' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'catkin_cmake_args' from command line to 'None' -[3.953s] Level 5:colcon.colcon_core.verb:set package 'wrover_mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[3.953s] DEBUG:colcon.colcon_core.verb:Building package 'wrover_mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/wrover_mock', 'symlink_install': False, 'test_result_base': None} -[3.954s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[3.960s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[3.961s] INFO:colcon.colcon_ros.task.ament_cmake.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/wrover_mock' with build type 'ament_cmake' -[3.961s] INFO:colcon.colcon_cmake.task.cmake.build:Building CMake package in '/home/balabalu/workspace/WRPlayTemp/src/wrover_mock' -[4.042s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[4.043s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[4.043s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[4.150s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock -[11.637s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock -[11.638s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --build /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -- -j5 -l5 -[11.874s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --build /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -- -j5 -l5 -[12.068s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --install /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -[12.125s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(wrover_mock) -[12.127s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --install /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -[12.167s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock' for CMake module files -[12.168s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock' for CMake config files -[12.169s] Level 1:colcon.colcon_core.shell:create_environment_hook('wrover_mock', 'cmake_prefix_path') -[12.169s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.ps1' -[12.172s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.dsv' -[12.173s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.sh' -[12.175s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/bin' -[12.175s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/lib/pkgconfig/wrover_mock.pc' -[12.181s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/lib/python3.12/site-packages' -[12.182s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/bin' -[12.182s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.ps1' -[12.185s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv' -[12.187s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.sh' -[12.189s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.bash' -[12.192s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.zsh' -[12.195s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/colcon-core/packages/wrover_mock) -[12.336s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(wrover_mock) -[12.337s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock' for CMake module files -[12.338s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock' for CMake config files -[12.338s] Level 1:colcon.colcon_core.shell:create_environment_hook('wrover_mock', 'cmake_prefix_path') -[12.338s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.ps1' -[12.339s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.dsv' -[12.340s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/hook/cmake_prefix_path.sh' -[12.341s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/bin' -[12.341s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/lib/pkgconfig/wrover_mock.pc' -[12.342s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/lib/python3.12/site-packages' -[12.342s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/bin' -[12.342s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.ps1' -[12.344s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv' -[12.345s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.sh' -[12.346s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.bash' -[12.347s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.zsh' -[12.348s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/colcon-core/packages/wrover_mock) -[12.349s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[12.350s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[12.350s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[12.350s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[12.416s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[12.416s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[12.416s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[12.455s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[12.456s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[12.458s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[12.465s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[12.506s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[12.508s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[12.509s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[12.556s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[12.558s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[12.587s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[12.589s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/command.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/command.log deleted file mode 100644 index bfd1264..0000000 --- a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/command.log +++ /dev/null @@ -1,6 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock -Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock -Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --build /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -- -j5 -l5 -Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --build /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -- -j5 -l5 -Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --install /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --install /home/balabalu/workspace/WRPlayTemp/build/wrover_mock diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stdout.log deleted file mode 100644 index d35f595..0000000 --- a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stdout.log +++ /dev/null @@ -1,36 +0,0 @@ --- The C compiler identification is GNU 13.2.0 --- The CXX compiler identification is GNU 13.2.0 --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working C compiler: /usr/bin/cc - skipped --- Detecting C compile features --- Detecting C compile features - done --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Check for working CXX compiler: /usr/bin/c++ - skipped --- Detecting CXX compile features --- Detecting CXX compile features - done --- Found ament_cmake: 2.5.0 (/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake) --- Found Python3: /usr/bin/python3 (found version "3.12.3") found components: Interpreter --- Found ament_lint_auto: 0.17.0 (/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake) --- Added test 'lint_cmake' to check CMake code style --- Added test 'xmllint' to check XML markup files --- Configuring done (7.2s) --- Generating done (0.0s) --- Build files have been written to: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock --- Install configuration: "" --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stdout_stderr.log deleted file mode 100644 index d35f595..0000000 --- a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/stdout_stderr.log +++ /dev/null @@ -1,36 +0,0 @@ --- The C compiler identification is GNU 13.2.0 --- The CXX compiler identification is GNU 13.2.0 --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working C compiler: /usr/bin/cc - skipped --- Detecting C compile features --- Detecting C compile features - done --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Check for working CXX compiler: /usr/bin/c++ - skipped --- Detecting CXX compile features --- Detecting CXX compile features - done --- Found ament_cmake: 2.5.0 (/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake) --- Found Python3: /usr/bin/python3 (found version "3.12.3") found components: Interpreter --- Found ament_lint_auto: 0.17.0 (/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake) --- Added test 'lint_cmake' to check CMake code style --- Added test 'xmllint' to check XML markup files --- Configuring done (7.2s) --- Generating done (0.0s) --- Build files have been written to: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock --- Install configuration: "" --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake --- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml diff --git a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/streams.log b/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/streams.log deleted file mode 100644 index 9f9aad0..0000000 --- a/WRPlayTemp/log/build_2024-07-03_19-59-10/wrover_mock/streams.log +++ /dev/null @@ -1,42 +0,0 @@ -[0.187s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock -[0.912s] -- The C compiler identification is GNU 13.2.0 -[1.596s] -- The CXX compiler identification is GNU 13.2.0 -[1.737s] -- Detecting C compiler ABI info -[2.294s] -- Detecting C compiler ABI info - done -[2.312s] -- Check for working C compiler: /usr/bin/cc - skipped -[2.321s] -- Detecting C compile features -[2.324s] -- Detecting C compile features - done -[2.382s] -- Detecting CXX compiler ABI info -[2.870s] -- Detecting CXX compiler ABI info - done -[2.886s] -- Check for working CXX compiler: /usr/bin/c++ - skipped -[2.888s] -- Detecting CXX compile features -[2.891s] -- Detecting CXX compile features - done -[3.031s] -- Found ament_cmake: 2.5.0 (/home/balabalu/ros2_jazzy/install/ament_cmake/share/ament_cmake/cmake) -[4.935s] -- Found Python3: /usr/bin/python3 (found version "3.12.3") found components: Interpreter -[6.609s] -- Found ament_lint_auto: 0.17.0 (/home/balabalu/ros2_jazzy/install/ament_lint_auto/share/ament_lint_auto/cmake) -[7.570s] -- Added test 'lint_cmake' to check CMake code style -[7.596s] -- Added test 'xmllint' to check XML markup files -[7.643s] -- Configuring done (7.2s) -[7.655s] -- Generating done (0.0s) -[7.657s] -- Build files have been written to: /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -[7.673s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake /home/balabalu/workspace/WRPlayTemp/src/wrover_mock -DCMAKE_INSTALL_PREFIX=/home/balabalu/workspace/WRPlayTemp/install/wrover_mock -[7.675s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --build /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -- -j5 -l5 -[7.911s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --build /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -- -j5 -l5 -[8.105s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --install /home/balabalu/workspace/WRPlayTemp/build/wrover_mock -[8.151s] -- Install configuration: "" -[8.152s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/package_run_dependencies/wrover_mock -[8.152s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/parent_prefix_path/wrover_mock -[8.152s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.sh -[8.154s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/ament_prefix_path.dsv -[8.154s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.sh -[8.154s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/environment/path.dsv -[8.154s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.bash -[8.155s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.sh -[8.156s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.zsh -[8.156s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/local_setup.dsv -[8.156s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.dsv -[8.157s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/ament_index/resource_index/packages/wrover_mock -[8.158s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig.cmake -[8.158s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/cmake/wrover_mockConfig-version.cmake -[8.159s] -- Installing: /home/balabalu/workspace/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml -[8.164s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/build/wrover_mock' returned '0': CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format DEBUGINFOD_URLS=https://debuginfod.ubuntu.com /usr/bin/cmake --install /home/balabalu/workspace/WRPlayTemp/build/wrover_mock diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stderr.log deleted file mode 100644 index 8c505b2..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stderr.log +++ /dev/null @@ -1,6 +0,0 @@ -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) - File "/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py", line 24 - 10)queue_size= - ^^^^^^^^^^ -SyntaxError: invalid syntax - diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stdout.log deleted file mode 100644 index be9a203..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stdout.log +++ /dev/null @@ -1,39 +0,0 @@ -running egg_info -creating ../../build/WRover_Mock/WRover_Mock.egg-info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build -creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib -creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py to __init__.cpython-312.pyc -running install_data -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages -copying resource/WRover_Mock -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages -copying package.xml -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock -running install_egg_info -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stdout_stderr.log deleted file mode 100644 index c884884..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,45 +0,0 @@ -running egg_info -creating ../../build/WRover_Mock/WRover_Mock.egg-info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build -creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib -creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) - File "/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py", line 24 - 10)queue_size= - ^^^^^^^^^^ -SyntaxError: invalid syntax - -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py to __init__.cpython-312.pyc -running install_data -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index -creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages -copying resource/WRover_Mock -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages -copying package.xml -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock -running install_egg_info -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/streams.log deleted file mode 100644 index 40a3767..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/WRover_Mock/streams.log +++ /dev/null @@ -1,47 +0,0 @@ -[3.644s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.378s] running egg_info -[4.380s] creating ../../build/WRover_Mock/WRover_Mock.egg-info -[4.440s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[4.440s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[4.441s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[4.442s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[4.442s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[4.442s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[4.532s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[4.533s] adding license file 'LICENSE' -[4.534s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[4.535s] running build -[4.535s] running build_py -[4.536s] creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build -[4.536s] creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib -[4.536s] creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[4.536s] copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[4.536s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[4.536s] copying WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[4.536s] running install -[4.548s] running install_lib -[4.593s] creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[4.595s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[4.595s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[4.595s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[4.598s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[4.601s] Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -[4.601s] File "/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py", line 24 -[4.601s] 10)queue_size= -[4.602s] ^^^^^^^^^^ -[4.602s] SyntaxError: invalid syntax -[4.602s] -[4.602s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[4.602s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py to __init__.cpython-312.pyc -[4.602s] running install_data -[4.602s] creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index -[4.602s] creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index -[4.602s] creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages -[4.602s] copying resource/WRover_Mock -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages -[4.603s] copying package.xml -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock -[4.603s] running install_egg_info -[4.650s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[4.654s] running install_scripts -[5.048s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[5.049s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[5.134s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/events.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/events.log deleted file mode 100644 index 49b6537..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/events.log +++ /dev/null @@ -1,96 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000270] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.002260] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.184144] (-) TimerEvent: {} -[0.375181] (-) TimerEvent: {} -[0.477832] (-) TimerEvent: {} -[0.588237] (-) TimerEvent: {} -[0.689770] (-) TimerEvent: {} -[0.792489] (-) TimerEvent: {} -[0.893192] (-) TimerEvent: {} -[0.993786] (-) TimerEvent: {} -[1.094121] (-) TimerEvent: {} -[1.195105] (-) TimerEvent: {} -[1.304618] (-) TimerEvent: {} -[1.407972] (-) TimerEvent: {} -[1.524095] (-) TimerEvent: {} -[1.624869] (-) TimerEvent: {} -[1.736110] (-) TimerEvent: {} -[1.840701] (-) TimerEvent: {} -[1.942215] (-) TimerEvent: {} -[2.043929] (-) TimerEvent: {} -[2.145206] (-) TimerEvent: {} -[2.246493] (-) TimerEvent: {} -[2.348510] (-) TimerEvent: {} -[2.449961] (-) TimerEvent: {} -[2.552094] (-) TimerEvent: {} -[2.655046] (-) TimerEvent: {} -[2.756960] (-) TimerEvent: {} -[2.861381] (-) TimerEvent: {} -[2.963353] (-) TimerEvent: {} -[3.074312] (-) TimerEvent: {} -[3.190524] (-) TimerEvent: {} -[3.293251] (-) TimerEvent: {} -[3.537260] (-) TimerEvent: {} -[3.641263] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[3.646717] (-) TimerEvent: {} -[3.802252] (-) TimerEvent: {} -[3.924270] (-) TimerEvent: {} -[4.032512] (-) TimerEvent: {} -[4.164064] (-) TimerEvent: {} -[4.379259] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[4.381000] (-) TimerEvent: {} -[4.381522] (WRover_Mock) StdoutLine: {'line': b'creating ../../build/WRover_Mock/WRover_Mock.egg-info\n'} -[4.441788] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[4.442445] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[4.443107] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[4.443968] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[4.444106] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[4.444200] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[4.516291] (-) TimerEvent: {} -[4.534034] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[4.535150] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[4.535912] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[4.536612] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[4.537034] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[4.537884] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build\n'} -[4.538053] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib\n'} -[4.538128] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[4.538254] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[4.538572] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[4.538647] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[4.538712] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[4.549823] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[4.593425] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[4.596926] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[4.597119] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[4.597252] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/__init__.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[4.600159] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[4.602880] (WRover_Mock) StderrLine: {'line': b'Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104)\n'} -[4.603296] (WRover_Mock) StderrLine: {'line': b' File "/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py", line 24\n'} -[4.603425] (WRover_Mock) StderrLine: {'line': b' 10)queue_size=\n'} -[4.603522] (WRover_Mock) StderrLine: {'line': b' ^^^^^^^^^^\n'} -[4.604028] (WRover_Mock) StderrLine: {'line': b'SyntaxError: invalid syntax\n'} -[4.604115] (WRover_Mock) StderrLine: {'line': b'\n'} -[4.604411] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[4.604531] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/__init__.py to __init__.cpython-312.pyc\n'} -[4.604631] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[4.604699] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index\n'} -[4.604760] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index\n'} -[4.604821] (WRover_Mock) StdoutLine: {'line': b'creating /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages\n'} -[4.604882] (WRover_Mock) StdoutLine: {'line': b'copying resource/WRover_Mock -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/ament_index/resource_index/packages\n'} -[4.605118] (WRover_Mock) StdoutLine: {'line': b'copying package.xml -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock\n'} -[4.605220] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[4.631554] (-) TimerEvent: {} -[4.652501] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[4.656094] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[4.732967] (-) TimerEvent: {} -[4.834393] (-) TimerEvent: {} -[4.945313] (-) TimerEvent: {} -[5.050487] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[5.050883] (-) TimerEvent: {} -[5.051390] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[5.135434] (WRover_Mock) CommandEnded: {'returncode': 0} -[5.154326] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[5.154990] (-) TimerEvent: {} -[5.158243] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-45-59/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-45-59/logger_all.log deleted file mode 100644 index bfb8828..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-45-59/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.294s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.294s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.369s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.369s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.369s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.369s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.369s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.369s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.369s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.370s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.407s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.410s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.502s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.525s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.573s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.573s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.573s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.574s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.574s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.577s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.578s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.578s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.593s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.593s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.594s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.595s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.596s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.596s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.400s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.401s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.401s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[4.224s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[5.715s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[5.718s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[5.719s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[5.720s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[5.720s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[5.720s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[5.722s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[5.722s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[5.723s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[5.724s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[5.725s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[5.725s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[5.726s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[5.726s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[5.727s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[5.727s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[5.728s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[5.730s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[5.731s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[5.731s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[5.733s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[5.735s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[5.735s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[5.756s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[5.757s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[5.757s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[5.830s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[5.830s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[5.833s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[5.835s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[5.855s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[5.856s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[5.858s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[5.874s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[5.876s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[5.902s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[5.902s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stderr.log deleted file mode 100644 index 8087769..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stderr.log +++ /dev/null @@ -1 +0,0 @@ -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stdout.log deleted file mode 100644 index 97297a6..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stdout.log +++ /dev/null @@ -1,24 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stdout_stderr.log deleted file mode 100644 index 2b745ce..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,25 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/streams.log deleted file mode 100644 index 54e117b..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/WRover_Mock/streams.log +++ /dev/null @@ -1,27 +0,0 @@ -[2.530s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.317s] running egg_info -[3.356s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.357s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.360s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.360s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.361s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.464s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.464s] adding license file 'LICENSE' -[3.465s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.467s] running build -[3.467s] running build_py -[3.468s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.468s] running install -[3.479s] running install_lib -[3.541s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.545s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.549s] Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -[3.549s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.551s] running install_data -[3.552s] running install_egg_info -[3.600s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.601s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.603s] running install_scripts -[3.933s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.935s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.011s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/events.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/events.log deleted file mode 100644 index ebcac6c..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/events.log +++ /dev/null @@ -1,64 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001404] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.002301] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.097952] (-) TimerEvent: {} -[0.203357] (-) TimerEvent: {} -[0.305566] (-) TimerEvent: {} -[0.406131] (-) TimerEvent: {} -[0.507344] (-) TimerEvent: {} -[0.608429] (-) TimerEvent: {} -[0.710392] (-) TimerEvent: {} -[0.819545] (-) TimerEvent: {} -[0.924558] (-) TimerEvent: {} -[1.031816] (-) TimerEvent: {} -[1.148867] (-) TimerEvent: {} -[1.252828] (-) TimerEvent: {} -[1.356342] (-) TimerEvent: {} -[1.493076] (-) TimerEvent: {} -[1.620182] (-) TimerEvent: {} -[1.722920] (-) TimerEvent: {} -[1.846377] (-) TimerEvent: {} -[1.955949] (-) TimerEvent: {} -[2.090483] (-) TimerEvent: {} -[2.202130] (-) TimerEvent: {} -[2.306243] (-) TimerEvent: {} -[2.412506] (-) TimerEvent: {} -[2.527042] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.532380] (-) TimerEvent: {} -[2.697097] (-) TimerEvent: {} -[2.873163] (-) TimerEvent: {} -[2.977331] (-) TimerEvent: {} -[3.272928] (-) TimerEvent: {} -[3.318904] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.358600] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.359429] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.362421] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.362624] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.363162] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.391830] (-) TimerEvent: {} -[3.463638] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.466351] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.467345] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.468536] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.469412] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.469684] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.470314] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.480642] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.518759] (-) TimerEvent: {} -[3.543200] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.546663] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.551077] (WRover_Mock) StderrLine: {'line': b'Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104)\n'} -[3.551519] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.552868] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.553710] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.601913] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.603306] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.604670] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.640591] (-) TimerEvent: {} -[3.872844] (-) TimerEvent: {} -[3.934852] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.937230] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.973022] (-) TimerEvent: {} -[4.012404] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.038203] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.040176] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-47-15/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-47-15/logger_all.log deleted file mode 100644 index 6cc0f1b..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-47-15/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.318s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.318s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.401s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.402s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.402s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.402s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.402s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.402s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.402s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.455s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.458s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.458s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.466s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.467s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.467s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.467s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.524s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.526s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.562s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.582s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.623s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.625s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.626s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.626s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.626s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.626s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.627s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.627s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.630s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.631s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.631s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.644s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.645s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.647s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.652s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.659s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.660s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.501s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.502s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.502s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.163s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.645s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.651s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.652s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.655s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.656s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.656s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.657s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.657s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.657s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.658s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.659s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.660s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.661s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.661s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.662s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.664s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.665s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.667s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.668s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.669s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.670s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.670s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.670s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.692s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.692s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.693s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.727s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.728s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.729s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.730s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.753s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.754s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.755s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.776s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.777s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.804s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.805s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stderr.log deleted file mode 100644 index 8087769..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stderr.log +++ /dev/null @@ -1 +0,0 @@ -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stdout.log deleted file mode 100644 index 97297a6..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stdout.log +++ /dev/null @@ -1,24 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stdout_stderr.log deleted file mode 100644 index 2b745ce..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,25 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/streams.log deleted file mode 100644 index 2b72e44..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/WRover_Mock/streams.log +++ /dev/null @@ -1,27 +0,0 @@ -[2.620s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.533s] running egg_info -[3.584s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.586s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.587s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.588s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.588s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.732s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.732s] adding license file 'LICENSE' -[3.732s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.732s] running build -[3.733s] running build_py -[3.733s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.733s] running install -[3.747s] running install_lib -[3.808s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.812s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.815s] Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -[3.815s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.816s] running install_data -[3.817s] running install_egg_info -[3.895s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.900s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.900s] running install_scripts -[4.241s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.241s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.329s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/events.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/events.log deleted file mode 100644 index ceb953e..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/events.log +++ /dev/null @@ -1,74 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.003385] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.003500] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.100797] (-) TimerEvent: {} -[0.206452] (-) TimerEvent: {} -[0.309479] (-) TimerEvent: {} -[0.410341] (-) TimerEvent: {} -[0.515036] (-) TimerEvent: {} -[0.619618] (-) TimerEvent: {} -[0.721258] (-) TimerEvent: {} -[0.822558] (-) TimerEvent: {} -[0.925691] (-) TimerEvent: {} -[1.033661] (-) TimerEvent: {} -[1.134978] (-) TimerEvent: {} -[1.239401] (-) TimerEvent: {} -[1.350370] (-) TimerEvent: {} -[1.451212] (-) TimerEvent: {} -[1.553282] (-) TimerEvent: {} -[1.654901] (-) TimerEvent: {} -[1.756769] (-) TimerEvent: {} -[1.858542] (-) TimerEvent: {} -[1.959969] (-) TimerEvent: {} -[2.061516] (-) TimerEvent: {} -[2.162238] (-) TimerEvent: {} -[2.263634] (-) TimerEvent: {} -[2.367504] (-) TimerEvent: {} -[2.469146] (-) TimerEvent: {} -[2.571377] (-) TimerEvent: {} -[2.620627] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.677658] (-) TimerEvent: {} -[2.793886] (-) TimerEvent: {} -[2.897081] (-) TimerEvent: {} -[2.998928] (-) TimerEvent: {} -[3.103014] (-) TimerEvent: {} -[3.232458] (-) TimerEvent: {} -[3.344606] (-) TimerEvent: {} -[3.445925] (-) TimerEvent: {} -[3.535693] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.551840] (-) TimerEvent: {} -[3.586655] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.589021] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.590081] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.590991] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.591611] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.652192] (-) TimerEvent: {} -[3.735442] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.735775] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.735883] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.735976] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.736065] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.736154] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.736252] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.750396] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.764365] (-) TimerEvent: {} -[3.811476] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.815318] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.818242] (WRover_Mock) StderrLine: {'line': b'Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104)\n'} -[3.818419] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.819918] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.820260] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.866229] (-) TimerEvent: {} -[3.897259] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.902898] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.903431] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.967539] (-) TimerEvent: {} -[4.069198] (-) TimerEvent: {} -[4.172088] (-) TimerEvent: {} -[4.244481] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.244799] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.272744] (-) TimerEvent: {} -[4.331852] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.352471] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.373376] (-) TimerEvent: {} -[4.374595] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-48-37/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-48-37/logger_all.log deleted file mode 100644 index 751731a..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-48-37/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.264s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.264s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.331s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.332s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.332s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.333s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.333s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.335s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.336s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.373s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.374s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.374s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.374s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.374s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.374s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.374s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.375s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.377s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.377s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.377s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.377s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.377s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.379s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.383s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.383s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.383s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.383s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.383s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.384s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.438s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.438s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.468s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.485s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.525s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.526s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.526s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.527s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.529s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.530s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.531s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.540s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.542s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.542s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.543s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.544s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.544s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.401s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.402s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.402s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.152s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.861s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.868s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.869s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.870s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.870s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.870s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.870s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.871s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.871s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.872s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.872s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.873s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.873s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.874s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.875s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.876s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.877s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.878s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.879s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.880s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.887s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.902s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.903s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.933s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.933s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.934s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.961s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.962s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.964s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.966s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.994s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.996s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.997s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[5.020s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[5.021s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[5.051s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[5.053s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stderr.log deleted file mode 100644 index 8087769..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stderr.log +++ /dev/null @@ -1 +0,0 @@ -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stdout.log deleted file mode 100644 index a0379eb..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stdout.log +++ /dev/null @@ -1,21 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -running install -running install_lib -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stdout_stderr.log deleted file mode 100644 index 8079990..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,22 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -running install -running install_lib -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/streams.log deleted file mode 100644 index 1d261b2..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/WRover_Mock/streams.log +++ /dev/null @@ -1,24 +0,0 @@ -[2.525s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.453s] running egg_info -[3.513s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.513s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.513s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.513s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.513s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.623s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.624s] adding license file 'LICENSE' -[3.625s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.626s] running build -[3.626s] running build_py -[3.626s] running install -[3.637s] running install_lib -[3.699s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.700s] Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104) -[3.702s] running install_data -[3.702s] running install_egg_info -[3.767s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.767s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.768s] running install_scripts -[4.097s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.103s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.176s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/events.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/events.log deleted file mode 100644 index 92429b7..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/events.log +++ /dev/null @@ -1,68 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.003219] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.003329] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.097833] (-) TimerEvent: {} -[0.204923] (-) TimerEvent: {} -[0.308547] (-) TimerEvent: {} -[0.425919] (-) TimerEvent: {} -[0.529417] (-) TimerEvent: {} -[0.630724] (-) TimerEvent: {} -[0.733260] (-) TimerEvent: {} -[0.833870] (-) TimerEvent: {} -[0.937270] (-) TimerEvent: {} -[1.041894] (-) TimerEvent: {} -[1.153006] (-) TimerEvent: {} -[1.260321] (-) TimerEvent: {} -[1.361327] (-) TimerEvent: {} -[1.465146] (-) TimerEvent: {} -[1.575902] (-) TimerEvent: {} -[1.685317] (-) TimerEvent: {} -[1.795605] (-) TimerEvent: {} -[1.897657] (-) TimerEvent: {} -[2.003952] (-) TimerEvent: {} -[2.105388] (-) TimerEvent: {} -[2.210967] (-) TimerEvent: {} -[2.318666] (-) TimerEvent: {} -[2.421858] (-) TimerEvent: {} -[2.523271] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.528888] (-) TimerEvent: {} -[2.643589] (-) TimerEvent: {} -[2.745834] (-) TimerEvent: {} -[2.849077] (-) TimerEvent: {} -[2.955045] (-) TimerEvent: {} -[3.058829] (-) TimerEvent: {} -[3.160618] (-) TimerEvent: {} -[3.262059] (-) TimerEvent: {} -[3.371984] (-) TimerEvent: {} -[3.455854] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.474439] (-) TimerEvent: {} -[3.515862] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.516252] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.516395] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.516517] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.516640] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.575084] (-) TimerEvent: {} -[3.625517] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.627600] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.627886] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.628681] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.628983] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.629289] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.640103] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.680039] (-) TimerEvent: {} -[3.700016] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.702925] (WRover_Mock) StderrLine: {'line': b'Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 104)\n'} -[3.704867] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.705133] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.770508] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.770811] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.770894] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.792371] (-) TimerEvent: {} -[3.900379] (-) TimerEvent: {} -[4.007019] (-) TimerEvent: {} -[4.099936] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.106718] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.107596] (-) TimerEvent: {} -[4.179097] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.198461] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.200526] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-50-03/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-50-03/logger_all.log deleted file mode 100644 index 5388dd4..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-50-03/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.288s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.289s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.360s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.364s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.365s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.367s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.368s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.368s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.368s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.368s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.368s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.369s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.423s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.431s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.481s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.482s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.514s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.533s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.588s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.588s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.591s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.591s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.591s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.608s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.608s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.611s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.612s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.613s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.614s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.419s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.423s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.423s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.121s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.773s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.780s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.781s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.782s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.782s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.783s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.783s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.783s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.783s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.784s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.785s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.786s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.786s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.786s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.787s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.788s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.789s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.790s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.790s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.791s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.792s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.792s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.792s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.821s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.821s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.821s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.861s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.862s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.863s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.867s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.897s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.898s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.900s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.918s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.920s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.944s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.945s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stderr.log deleted file mode 100644 index d863964..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stderr.log +++ /dev/null @@ -1 +0,0 @@ -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103) diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stdout.log deleted file mode 100644 index 2804f13..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stdout.log +++ /dev/null @@ -1,26 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stdout_stderr.log deleted file mode 100644 index 889183d..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,27 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103) -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/streams.log deleted file mode 100644 index 2e2a641..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/WRover_Mock/streams.log +++ /dev/null @@ -1,29 +0,0 @@ -[2.649s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.513s] running egg_info -[3.565s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.565s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.566s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.566s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.566s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.678s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.678s] adding license file 'LICENSE' -[3.679s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.681s] running build -[3.682s] running build_py -[3.682s] copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.682s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.683s] running install -[3.693s] running install_lib -[3.752s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.752s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.755s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.758s] Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103) -[3.758s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.760s] running install_data -[3.760s] running install_egg_info -[3.814s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.815s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.816s] running install_scripts -[4.148s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.149s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.220s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/events.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/events.log deleted file mode 100644 index 67bc42a..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/events.log +++ /dev/null @@ -1,71 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.009124] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.009576] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.099874] (-) TimerEvent: {} -[0.202339] (-) TimerEvent: {} -[0.307427] (-) TimerEvent: {} -[0.410449] (-) TimerEvent: {} -[0.753861] (-) TimerEvent: {} -[0.856006] (-) TimerEvent: {} -[0.957373] (-) TimerEvent: {} -[1.058465] (-) TimerEvent: {} -[1.174328] (-) TimerEvent: {} -[1.278320] (-) TimerEvent: {} -[1.380313] (-) TimerEvent: {} -[1.495977] (-) TimerEvent: {} -[1.598903] (-) TimerEvent: {} -[1.701063] (-) TimerEvent: {} -[1.820909] (-) TimerEvent: {} -[1.933588] (-) TimerEvent: {} -[2.053317] (-) TimerEvent: {} -[2.160809] (-) TimerEvent: {} -[2.275494] (-) TimerEvent: {} -[2.407830] (-) TimerEvent: {} -[2.525596] (-) TimerEvent: {} -[2.637030] (-) TimerEvent: {} -[2.652500] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.738752] (-) TimerEvent: {} -[2.841315] (-) TimerEvent: {} -[2.946378] (-) TimerEvent: {} -[3.055639] (-) TimerEvent: {} -[3.175178] (-) TimerEvent: {} -[3.286645] (-) TimerEvent: {} -[3.389636] (-) TimerEvent: {} -[3.498706] (-) TimerEvent: {} -[3.521758] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.574384] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.574615] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.575595] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.575715] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.575832] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.603627] (-) TimerEvent: {} -[3.686826] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.687775] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.688876] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.689185] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.691007] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.691127] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.691714] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.692420] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.702609] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.703852] (-) TimerEvent: {} -[3.760938] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.761217] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.764784] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.767543] (WRover_Mock) StderrLine: {'line': b'Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103)\n'} -[3.768018] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.769290] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.769764] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.805405] (-) TimerEvent: {} -[3.823421] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.824046] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.825516] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.905984] (-) TimerEvent: {} -[4.006800] (-) TimerEvent: {} -[4.109783] (-) TimerEvent: {} -[4.157872] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.158481] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.211697] (-) TimerEvent: {} -[4.229184] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.254734] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.258042] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-15/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-52-15/logger_all.log deleted file mode 100644 index d1b2ce4..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-15/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.268s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.269s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.338s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.338s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.338s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.338s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.338s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.339s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.339s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.339s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.343s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.343s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.343s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.343s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.398s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.398s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.399s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.399s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.399s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.399s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.400s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.401s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.408s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.408s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.408s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.473s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.473s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.514s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.537s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.587s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.587s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.588s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.599s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.599s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.599s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.606s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.609s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.611s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.612s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.614s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.615s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.368s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.369s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.369s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.256s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.833s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.839s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.840s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.841s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.842s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.842s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.842s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.843s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.843s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.844s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.845s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.846s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.846s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.846s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.847s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.848s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.850s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.850s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.851s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.852s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.854s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.854s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.854s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.875s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.876s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.876s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.903s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.904s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.907s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.909s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.930s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.931s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.932s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.955s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.956s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.981s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.983s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stderr.log deleted file mode 100644 index d863964..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stderr.log +++ /dev/null @@ -1 +0,0 @@ -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103) diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stdout.log deleted file mode 100644 index 97297a6..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stdout.log +++ /dev/null @@ -1,24 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stdout_stderr.log deleted file mode 100644 index 2e40bb0..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,25 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103) -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/streams.log deleted file mode 100644 index 7e310de..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/WRover_Mock/streams.log +++ /dev/null @@ -1,27 +0,0 @@ -[2.570s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.417s] running egg_info -[3.471s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.472s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.473s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.474s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.475s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.576s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.577s] adding license file 'LICENSE' -[3.577s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.578s] running build -[3.578s] running build_py -[3.578s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.579s] running install -[3.590s] running install_lib -[3.649s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.649s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.649s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.649s] running install_data -[3.649s] running install_egg_info -[3.650s] Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103) -[3.702s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.703s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.704s] running install_scripts -[4.037s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.038s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.103s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/events.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/events.log deleted file mode 100644 index 9b0f290..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/events.log +++ /dev/null @@ -1,69 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000302] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.000714] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.097634] (-) TimerEvent: {} -[0.201750] (-) TimerEvent: {} -[0.303628] (-) TimerEvent: {} -[0.415380] (-) TimerEvent: {} -[0.667874] (-) TimerEvent: {} -[0.777713] (-) TimerEvent: {} -[0.888559] (-) TimerEvent: {} -[0.992556] (-) TimerEvent: {} -[1.099986] (-) TimerEvent: {} -[1.204671] (-) TimerEvent: {} -[1.309565] (-) TimerEvent: {} -[1.411515] (-) TimerEvent: {} -[1.515755] (-) TimerEvent: {} -[1.630899] (-) TimerEvent: {} -[1.736668] (-) TimerEvent: {} -[1.837795] (-) TimerEvent: {} -[1.944582] (-) TimerEvent: {} -[2.057347] (-) TimerEvent: {} -[2.164689] (-) TimerEvent: {} -[2.266660] (-) TimerEvent: {} -[2.374950] (-) TimerEvent: {} -[2.480700] (-) TimerEvent: {} -[2.567850] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.581606] (-) TimerEvent: {} -[2.683249] (-) TimerEvent: {} -[2.786897] (-) TimerEvent: {} -[2.906688] (-) TimerEvent: {} -[3.009194] (-) TimerEvent: {} -[3.109880] (-) TimerEvent: {} -[3.211926] (-) TimerEvent: {} -[3.312929] (-) TimerEvent: {} -[3.416944] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.417369] (-) TimerEvent: {} -[3.471775] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.472903] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.473663] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.474608] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.475786] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.528519] (-) TimerEvent: {} -[3.576697] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.577294] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.577942] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.578444] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.578619] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.578924] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.579443] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.589668] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.629102] (-) TimerEvent: {} -[3.649284] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.649964] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.650063] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.650134] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.650200] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.650273] (WRover_Mock) StderrLine: {'line': b'Sorry: IndentationError: unexpected indent (AbstractRobot.py, line 103)\n'} -[3.701952] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.703074] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.704819] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.729522] (-) TimerEvent: {} -[3.839296] (-) TimerEvent: {} -[3.952080] (-) TimerEvent: {} -[4.037433] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.038315] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.052364] (-) TimerEvent: {} -[4.103538] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.125487] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.127159] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-52-55/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-52-55/logger_all.log deleted file mode 100644 index 34e2a66..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-52-55/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.259s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.260s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.330s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.331s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.331s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.331s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.331s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.331s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.333s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.334s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.335s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.338s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.397s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.399s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.400s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.401s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.401s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.401s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.408s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.408s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.409s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.462s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.462s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.512s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.546s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.588s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.589s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.592s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.592s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.593s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.594s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.595s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.595s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.606s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.606s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.609s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.610s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.612s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.612s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.369s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.370s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.370s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.168s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.701s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.708s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.709s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.710s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.711s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.711s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.712s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.712s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.712s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.713s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.714s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.715s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.715s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.716s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.717s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.717s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.718s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.719s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.720s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.721s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.721s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.722s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.722s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.748s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.750s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.750s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.785s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.786s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.788s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.791s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.823s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.824s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.825s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.848s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.850s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.876s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.878s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stdout.log deleted file mode 100644 index b312fed..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stdout_stderr.log deleted file mode 100644 index b312fed..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/streams.log deleted file mode 100644 index 622a7c2..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-55-13/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.240s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.180s] running egg_info -[3.230s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.232s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.235s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.235s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.235s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.348s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.349s] adding license file 'LICENSE' -[3.350s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.351s] running build -[3.351s] running build_py -[3.351s] copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.352s] running install -[3.360s] running install_lib -[3.407s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.411s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.413s] running install_data -[3.414s] running install_egg_info -[3.462s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.462s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.464s] running install_scripts -[3.786s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.786s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.869s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/events.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/events.log deleted file mode 100644 index eda4873..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-55-13/events.log +++ /dev/null @@ -1,60 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001139] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001305] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.101000] (-) TimerEvent: {} -[0.204695] (-) TimerEvent: {} -[0.315141] (-) TimerEvent: {} -[0.418229] (-) TimerEvent: {} -[0.520224] (-) TimerEvent: {} -[0.623667] (-) TimerEvent: {} -[0.737671] (-) TimerEvent: {} -[0.840714] (-) TimerEvent: {} -[0.941608] (-) TimerEvent: {} -[1.061585] (-) TimerEvent: {} -[1.187544] (-) TimerEvent: {} -[1.325915] (-) TimerEvent: {} -[1.436782] (-) TimerEvent: {} -[1.694918] (-) TimerEvent: {} -[2.236891] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.243044] (-) TimerEvent: {} -[2.351141] (-) TimerEvent: {} -[2.462606] (-) TimerEvent: {} -[2.568737] (-) TimerEvent: {} -[2.682770] (-) TimerEvent: {} -[2.802021] (-) TimerEvent: {} -[2.911772] (-) TimerEvent: {} -[3.015868] (-) TimerEvent: {} -[3.125852] (-) TimerEvent: {} -[3.181327] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.228610] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.232327] (-) TimerEvent: {} -[3.233020] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.235831] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.236081] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.236209] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.333878] (-) TimerEvent: {} -[3.349425] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.350203] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.350371] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.351023] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.352694] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.352802] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.352875] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.360820] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.406769] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.412032] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.414383] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.414972] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.445009] (-) TimerEvent: {} -[3.462763] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.463345] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.464985] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.545814] (-) TimerEvent: {} -[3.646494] (-) TimerEvent: {} -[3.749092] (-) TimerEvent: {} -[3.786126] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.787299] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.850032] (-) TimerEvent: {} -[3.869771] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.904663] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.906698] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-55-13/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-55-13/logger_all.log deleted file mode 100644 index 1c1c94c..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-55-13/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.267s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.267s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.338s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.346s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.347s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.347s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.347s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.347s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.347s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.347s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.348s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.398s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.399s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.400s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.409s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.410s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.411s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.473s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.474s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.518s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.546s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.597s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.598s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.598s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.598s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.599s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.599s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.600s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.600s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.600s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.600s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.600s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.602s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.603s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.603s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.612s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.612s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.613s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.615s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.616s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.617s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.383s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.384s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.385s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[2.845s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.473s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.482s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.484s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.485s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.485s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.486s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.486s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.486s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.487s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.488s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.489s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.491s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.491s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.491s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.493s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.494s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.496s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.497s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.499s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.501s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.502s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.502s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.502s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.538s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.538s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.538s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.576s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.577s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.578s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.580s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.608s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.609s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.610s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.633s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.634s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.661s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.662s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/streams.log deleted file mode 100644 index d3b2e02..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-10/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.593s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.475s] running egg_info -[3.530s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.531s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.531s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.532s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.532s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.652s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.652s] adding license file 'LICENSE' -[3.654s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.655s] running build -[3.655s] running build_py -[3.655s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.656s] running install -[3.668s] running install_lib -[3.724s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.730s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.731s] running install_data -[3.731s] running install_egg_info -[3.795s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.812s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.812s] running install_scripts -[4.124s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.124s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.205s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/events.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/events.log deleted file mode 100644 index e74aaa4..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-10/events.log +++ /dev/null @@ -1,67 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001119] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001167] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.214997] (-) TimerEvent: {} -[0.325728] (-) TimerEvent: {} -[0.622154] (-) TimerEvent: {} -[0.738491] (-) TimerEvent: {} -[0.843696] (-) TimerEvent: {} -[0.946698] (-) TimerEvent: {} -[1.050597] (-) TimerEvent: {} -[1.161647] (-) TimerEvent: {} -[1.267803] (-) TimerEvent: {} -[1.371236] (-) TimerEvent: {} -[1.472328] (-) TimerEvent: {} -[1.574389] (-) TimerEvent: {} -[1.675556] (-) TimerEvent: {} -[1.776985] (-) TimerEvent: {} -[1.879839] (-) TimerEvent: {} -[1.980504] (-) TimerEvent: {} -[2.082491] (-) TimerEvent: {} -[2.183266] (-) TimerEvent: {} -[2.285982] (-) TimerEvent: {} -[2.387326] (-) TimerEvent: {} -[2.488327] (-) TimerEvent: {} -[2.584993] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.594959] (-) TimerEvent: {} -[2.695536] (-) TimerEvent: {} -[2.798538] (-) TimerEvent: {} -[2.908263] (-) TimerEvent: {} -[3.025640] (-) TimerEvent: {} -[3.140077] (-) TimerEvent: {} -[3.265744] (-) TimerEvent: {} -[3.372294] (-) TimerEvent: {} -[3.475658] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.476697] (-) TimerEvent: {} -[3.531401] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.531974] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.532085] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.532628] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.532782] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.578644] (-) TimerEvent: {} -[3.652808] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.653092] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.655422] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.655649] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.655785] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.655889] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.656110] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.669173] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.688843] (-) TimerEvent: {} -[3.725016] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.730803] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.732144] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.732378] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.789361] (-) TimerEvent: {} -[3.795892] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.810657] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.813042] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.893439] (-) TimerEvent: {} -[4.001438] (-) TimerEvent: {} -[4.106371] (-) TimerEvent: {} -[4.124674] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.125169] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.205758] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.206834] (-) TimerEvent: {} -[4.241854] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.244725] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-10/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-56-10/logger_all.log deleted file mode 100644 index 52e5954..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-10/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.328s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.330s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.446s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.446s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.446s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.446s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.446s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.447s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.447s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.526s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.526s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.526s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.526s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.526s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.527s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.527s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.528s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.529s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.529s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.529s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.529s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.529s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.530s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.530s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.530s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.530s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.530s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.531s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.534s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.534s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.535s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.535s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.535s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.535s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.611s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.611s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.645s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.665s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.730s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.730s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.731s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.731s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.731s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.734s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.735s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.736s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.746s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.746s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.747s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.748s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.749s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.749s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.529s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.530s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.530s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.329s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.941s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.954s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.954s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.955s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.955s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.955s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.956s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.956s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.956s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.957s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.959s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.961s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.961s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.962s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.964s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.966s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.968s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.969s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.970s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.972s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.975s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.976s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.976s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[5.000s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[5.001s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[5.001s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[5.040s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[5.040s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[5.041s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[5.043s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[5.063s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[5.064s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[5.064s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[5.081s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[5.081s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[5.109s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[5.110s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/streams.log deleted file mode 100644 index ae62221..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-49/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.673s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.539s] running egg_info -[3.589s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.590s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.591s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.592s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.604s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.706s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.706s] adding license file 'LICENSE' -[3.706s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.707s] running build -[3.707s] running build_py -[3.707s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.707s] running install -[3.715s] running install_lib -[3.765s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.770s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.772s] running install_data -[3.772s] running install_egg_info -[3.828s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.828s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.830s] running install_scripts -[4.162s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.163s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.222s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/events.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/events.log deleted file mode 100644 index ab06414..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-49/events.log +++ /dev/null @@ -1,67 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001220] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.010642] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.121245] (-) TimerEvent: {} -[0.226861] (-) TimerEvent: {} -[0.336345] (-) TimerEvent: {} -[0.446645] (-) TimerEvent: {} -[0.762736] (-) TimerEvent: {} -[0.864838] (-) TimerEvent: {} -[0.965785] (-) TimerEvent: {} -[1.066477] (-) TimerEvent: {} -[1.183070] (-) TimerEvent: {} -[1.300472] (-) TimerEvent: {} -[1.402828] (-) TimerEvent: {} -[1.521562] (-) TimerEvent: {} -[1.646110] (-) TimerEvent: {} -[1.751489] (-) TimerEvent: {} -[1.853399] (-) TimerEvent: {} -[1.955499] (-) TimerEvent: {} -[2.061016] (-) TimerEvent: {} -[2.163309] (-) TimerEvent: {} -[2.286089] (-) TimerEvent: {} -[2.397777] (-) TimerEvent: {} -[2.500264] (-) TimerEvent: {} -[2.601789] (-) TimerEvent: {} -[2.677462] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.703610] (-) TimerEvent: {} -[2.810383] (-) TimerEvent: {} -[2.927544] (-) TimerEvent: {} -[3.033840] (-) TimerEvent: {} -[3.135774] (-) TimerEvent: {} -[3.250031] (-) TimerEvent: {} -[3.363198] (-) TimerEvent: {} -[3.483009] (-) TimerEvent: {} -[3.548954] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.597107] (-) TimerEvent: {} -[3.599208] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.600795] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.601626] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.602968] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.613638] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.698285] (-) TimerEvent: {} -[3.716416] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.716683] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.716827] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.717141] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.717244] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.717615] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.717738] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.725302] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.775725] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.780078] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.782418] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.782679] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.801387] (-) TimerEvent: {} -[3.837666] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.838958] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.840596] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.904826] (-) TimerEvent: {} -[4.011472] (-) TimerEvent: {} -[4.138363] (-) TimerEvent: {} -[4.172247] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.173509] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.232519] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.240844] (-) TimerEvent: {} -[4.259746] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.262353] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-56-49/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-56-49/logger_all.log deleted file mode 100644 index f19974d..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-56-49/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.315s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.315s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.399s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.401s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.401s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.401s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.401s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.401s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.402s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.455s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.457s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.458s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.464s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.465s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.469s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.469s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.469s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.469s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.469s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.469s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.540s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.542s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.577s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.600s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.672s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.672s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.672s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.672s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.673s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.674s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.674s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.675s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.675s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.675s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.677s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.680s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.680s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.680s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.686s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.688s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.692s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.693s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.695s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.695s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.500s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.500s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.500s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.361s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.911s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.920s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.922s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.923s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.924s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.924s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.924s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.924s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.925s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.926s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.927s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.928s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.928s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.928s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.929s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.930s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.932s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.933s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.934s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.935s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.935s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.938s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.939s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.956s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.956s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.956s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[5.023s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[5.024s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[5.026s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[5.028s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[5.048s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[5.049s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[5.050s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[5.081s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[5.082s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[5.105s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[5.106s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/streams.log deleted file mode 100644 index 8bfd4f7..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-04/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.455s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.254s] running egg_info -[3.303s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.304s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.306s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.306s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.306s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.403s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.408s] adding license file 'LICENSE' -[3.408s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.408s] running build -[3.408s] running build_py -[3.409s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.410s] running install -[3.421s] running install_lib -[3.481s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.484s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.486s] running install_data -[3.486s] running install_egg_info -[3.546s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.547s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.547s] running install_scripts -[3.872s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.873s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.953s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/events.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/events.log deleted file mode 100644 index a5f4b08..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-04/events.log +++ /dev/null @@ -1,62 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000814] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.000977] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.194233] (-) TimerEvent: {} -[0.329895] (-) TimerEvent: {} -[0.657490] (-) TimerEvent: {} -[0.792690] (-) TimerEvent: {} -[0.894105] (-) TimerEvent: {} -[0.996160] (-) TimerEvent: {} -[1.110885] (-) TimerEvent: {} -[1.213344] (-) TimerEvent: {} -[1.314302] (-) TimerEvent: {} -[1.425893] (-) TimerEvent: {} -[1.529466] (-) TimerEvent: {} -[1.630347] (-) TimerEvent: {} -[1.731876] (-) TimerEvent: {} -[1.834148] (-) TimerEvent: {} -[1.935055] (-) TimerEvent: {} -[2.044153] (-) TimerEvent: {} -[2.148602] (-) TimerEvent: {} -[2.250916] (-) TimerEvent: {} -[2.354283] (-) TimerEvent: {} -[2.447662] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.456820] (-) TimerEvent: {} -[2.562211] (-) TimerEvent: {} -[2.665571] (-) TimerEvent: {} -[2.811137] (-) TimerEvent: {} -[3.093865] (-) TimerEvent: {} -[3.219990] (-) TimerEvent: {} -[3.254276] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.304063] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.305052] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.305293] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.306866] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.306956] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.322156] (-) TimerEvent: {} -[3.403931] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.408624] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.408826] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.409372] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.409510] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.409615] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.410892] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.421404] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.422462] (-) TimerEvent: {} -[3.481519] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.485502] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.486858] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.487224] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.528360] (-) TimerEvent: {} -[3.546552] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.547812] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.548205] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.650190] (-) TimerEvent: {} -[3.764037] (-) TimerEvent: {} -[3.871585] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.872912] (-) TimerEvent: {} -[3.873839] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.953341] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.977733] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.978442] (-) TimerEvent: {} -[3.978803] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-04/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-58-04/logger_all.log deleted file mode 100644 index 61aa55c..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-04/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.341s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.341s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.429s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.434s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.434s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.434s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.434s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.435s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.435s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.435s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.435s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.435s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.435s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.435s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.435s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.436s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.436s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.436s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.486s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.493s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.493s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.494s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.494s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.494s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.494s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.569s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.569s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.609s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.645s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.706s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.707s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.707s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.707s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.710s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.710s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.710s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.721s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.722s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.723s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.725s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.726s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.727s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.485s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.485s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.485s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.168s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.666s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.673s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.673s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.674s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.675s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.675s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.675s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.675s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.675s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.676s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.677s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.678s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.678s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.678s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.679s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.680s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.681s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.681s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.682s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.687s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.688s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.689s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.689s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.713s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.714s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.714s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.750s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.750s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.751s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.753s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.770s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.771s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.772s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.788s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.795s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.821s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.822s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/streams.log deleted file mode 100644 index 08d1d21..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-43/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.519s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.375s] running egg_info -[3.426s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.426s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.427s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.429s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.429s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.537s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.538s] adding license file 'LICENSE' -[3.538s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.539s] running build -[3.540s] running build_py -[3.540s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.540s] running install -[3.551s] running install_lib -[3.613s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.617s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.620s] running install_data -[3.620s] running install_egg_info -[3.665s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.666s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.668s] running install_scripts -[3.996s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.999s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.065s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/events.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/events.log deleted file mode 100644 index 54be87e..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-43/events.log +++ /dev/null @@ -1,67 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000669] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.000736] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.099756] (-) TimerEvent: {} -[0.214909] (-) TimerEvent: {} -[0.317518] (-) TimerEvent: {} -[0.420625] (-) TimerEvent: {} -[0.539300] (-) TimerEvent: {} -[0.645200] (-) TimerEvent: {} -[0.762502] (-) TimerEvent: {} -[0.867763] (-) TimerEvent: {} -[0.972714] (-) TimerEvent: {} -[1.079480] (-) TimerEvent: {} -[1.180971] (-) TimerEvent: {} -[1.282699] (-) TimerEvent: {} -[1.410499] (-) TimerEvent: {} -[1.513167] (-) TimerEvent: {} -[1.627550] (-) TimerEvent: {} -[1.738306] (-) TimerEvent: {} -[1.840319] (-) TimerEvent: {} -[1.948171] (-) TimerEvent: {} -[2.063037] (-) TimerEvent: {} -[2.166659] (-) TimerEvent: {} -[2.267597] (-) TimerEvent: {} -[2.388502] (-) TimerEvent: {} -[2.493288] (-) TimerEvent: {} -[2.512782] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.594452] (-) TimerEvent: {} -[2.697705] (-) TimerEvent: {} -[2.798414] (-) TimerEvent: {} -[2.911690] (-) TimerEvent: {} -[3.027119] (-) TimerEvent: {} -[3.128009] (-) TimerEvent: {} -[3.232536] (-) TimerEvent: {} -[3.355250] (-) TimerEvent: {} -[3.374397] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.426157] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.427012] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.427945] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.429293] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.429899] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.463840] (-) TimerEvent: {} -[3.537269] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.538380] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.539230] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.539918] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.540317] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.540773] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.541193] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.551425] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.571598] (-) TimerEvent: {} -[3.613627] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.617786] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.619754] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.620552] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.663880] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.665831] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.668426] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.672834] (-) TimerEvent: {} -[3.788189] (-) TimerEvent: {} -[3.893503] (-) TimerEvent: {} -[3.996910] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.997296] (-) TimerEvent: {} -[3.999600] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.065376] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.085553] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.087709] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-58-43/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-58-43/logger_all.log deleted file mode 100644 index 06a1a9a..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-58-43/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.285s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.285s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.357s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.358s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.358s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.358s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.358s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.359s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.360s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.362s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.363s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.363s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.364s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.364s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.364s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.364s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.364s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.364s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.416s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.417s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.417s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.417s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.418s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.420s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.425s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.425s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.425s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.425s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.425s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.425s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.502s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.502s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.543s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.570s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.627s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.628s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.628s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.628s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.628s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.631s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.631s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.633s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.648s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.649s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.650s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.651s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.653s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.653s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.438s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.438s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.438s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.151s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.697s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.705s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.706s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.707s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.707s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.707s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.708s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.708s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.708s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.709s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.710s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.710s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.711s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.711s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.712s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.712s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.714s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.715s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.716s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.716s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.717s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.719s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.719s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.740s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.740s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.740s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.789s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.789s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.791s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.795s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.816s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.818s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.819s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.840s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.841s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.866s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.867s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/streams.log deleted file mode 100644 index 2509af9..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-59-50/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.390s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.100s] running egg_info -[3.156s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.156s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.156s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.158s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.158s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.244s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.244s] adding license file 'LICENSE' -[3.244s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.245s] running build -[3.245s] running build_py -[3.246s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.246s] running install -[3.257s] running install_lib -[3.301s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.308s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.309s] running install_data -[3.309s] running install_egg_info -[3.356s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.358s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.360s] running install_scripts -[3.658s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.658s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.766s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/events.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/events.log deleted file mode 100644 index 062f0f9..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-59-50/events.log +++ /dev/null @@ -1,53 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001602] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.002495] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.097363] (-) TimerEvent: {} -[0.202686] (-) TimerEvent: {} -[0.308521] (-) TimerEvent: {} -[0.412068] (-) TimerEvent: {} -[0.517300] (-) TimerEvent: {} -[0.620486] (-) TimerEvent: {} -[0.723961] (-) TimerEvent: {} -[0.829828] (-) TimerEvent: {} -[0.932708] (-) TimerEvent: {} -[1.068838] (-) TimerEvent: {} -[1.251487] (-) TimerEvent: {} -[1.367727] (-) TimerEvent: {} -[1.556895] (-) TimerEvent: {} -[1.777535] (-) TimerEvent: {} -[2.266297] (-) TimerEvent: {} -[2.386656] (-) TimerEvent: {} -[2.391795] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.515394] (-) TimerEvent: {} -[3.081755] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.102868] (-) TimerEvent: {} -[3.157409] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.158891] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.159026] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.160818] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.161001] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.242797] (-) TimerEvent: {} -[3.245730] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.246619] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.246962] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.247283] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.247389] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.247544] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.248734] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.259277] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.303632] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.310281] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.311540] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.311887] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.356874] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.358517] (-) TimerEvent: {} -[3.359996] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.362436] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.555685] (-) TimerEvent: {} -[3.660130] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.660648] (-) TimerEvent: {} -[3.660809] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.768748] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.770356] (-) TimerEvent: {} -[3.778046] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.778513] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_20-59-50/logger_all.log b/WRPlayTemp/log/build_2024-07-03_20-59-50/logger_all.log deleted file mode 100644 index 7ee4071..0000000 --- a/WRPlayTemp/log/build_2024-07-03_20-59-50/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.301s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.301s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.392s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.393s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.393s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.393s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.393s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.394s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.394s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.394s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.394s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.394s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.395s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.395s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.395s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.395s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.395s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.395s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.459s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.460s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.461s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.462s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.463s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.466s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.466s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.532s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.533s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.572s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.608s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.649s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.658s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.658s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.659s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.659s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.659s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.659s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.659s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.659s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.659s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.659s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.662s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.662s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.663s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.677s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.677s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.678s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.679s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.694s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.698s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.557s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.557s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.557s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.057s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.422s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.423s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.430s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.431s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.431s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.431s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.432s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.432s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.433s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.434s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.435s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.436s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.436s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.437s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.438s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.438s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.440s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.440s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.441s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.441s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.441s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.442s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.442s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.461s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.461s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.461s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.524s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.524s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.526s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.529s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.548s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.548s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.549s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.568s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.569s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.586s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.587s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stdout.log deleted file mode 100644 index 2804f13..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stdout.log +++ /dev/null @@ -1,26 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stdout_stderr.log deleted file mode 100644 index 2804f13..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,26 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/streams.log deleted file mode 100644 index 41c8e48..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-01-37/WRover_Mock/streams.log +++ /dev/null @@ -1,28 +0,0 @@ -[2.562s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.442s] running egg_info -[3.502s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.503s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.503s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.503s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.504s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.601s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.601s] adding license file 'LICENSE' -[3.602s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.602s] running build -[3.602s] running build_py -[3.602s] copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.602s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.603s] running install -[3.613s] running install_lib -[3.662s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.664s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.676s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.677s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.677s] running install_data -[3.677s] running install_egg_info -[3.727s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.727s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.729s] running install_scripts -[4.108s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.108s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.168s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/events.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/events.log deleted file mode 100644 index 1000d90..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-01-37/events.log +++ /dev/null @@ -1,72 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000437] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001856] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.099042] (-) TimerEvent: {} -[0.204137] (-) TimerEvent: {} -[0.305424] (-) TimerEvent: {} -[0.407739] (-) TimerEvent: {} -[0.511189] (-) TimerEvent: {} -[0.613750] (-) TimerEvent: {} -[0.714690] (-) TimerEvent: {} -[0.816417] (-) TimerEvent: {} -[0.919996] (-) TimerEvent: {} -[1.021708] (-) TimerEvent: {} -[1.124115] (-) TimerEvent: {} -[1.230882] (-) TimerEvent: {} -[1.344077] (-) TimerEvent: {} -[1.456245] (-) TimerEvent: {} -[1.570920] (-) TimerEvent: {} -[1.684356] (-) TimerEvent: {} -[1.787891] (-) TimerEvent: {} -[1.898223] (-) TimerEvent: {} -[2.001077] (-) TimerEvent: {} -[2.105854] (-) TimerEvent: {} -[2.223613] (-) TimerEvent: {} -[2.344235] (-) TimerEvent: {} -[2.446362] (-) TimerEvent: {} -[2.555402] (-) TimerEvent: {} -[2.562460] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.663171] (-) TimerEvent: {} -[2.766089] (-) TimerEvent: {} -[2.880228] (-) TimerEvent: {} -[2.989012] (-) TimerEvent: {} -[3.097942] (-) TimerEvent: {} -[3.209162] (-) TimerEvent: {} -[3.349082] (-) TimerEvent: {} -[3.443082] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.454911] (-) TimerEvent: {} -[3.503815] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.504358] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.504924] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.505222] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.505447] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.559572] (-) TimerEvent: {} -[3.602069] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.603066] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.603500] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.604064] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.604201] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.604276] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.604346] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.604502] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.614336] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.661735] (-) TimerEvent: {} -[3.664028] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.665898] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.678108] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.678419] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.678800] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.678948] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.728052] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.729132] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.730993] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.766124] (-) TimerEvent: {} -[3.868855] (-) TimerEvent: {} -[3.979341] (-) TimerEvent: {} -[4.092023] (-) TimerEvent: {} -[4.109149] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.109509] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.168243] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.193876] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.196025] (-) TimerEvent: {} -[4.196206] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-01-37/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-01-37/logger_all.log deleted file mode 100644 index f4c5c98..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-01-37/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.267s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.268s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.336s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.337s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.337s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.337s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.337s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.337s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.337s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.337s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.342s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.343s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.343s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.402s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.403s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.404s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.405s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.408s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.409s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.410s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.411s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.411s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.411s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.411s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.411s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.411s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.414s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.414s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.414s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.414s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.414s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.414s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.463s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.464s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.505s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.529s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.573s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.574s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.574s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.575s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.578s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.580s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.580s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.604s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.604s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.607s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.608s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.610s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.610s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.463s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.464s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.464s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.142s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.748s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.757s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.757s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.758s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.758s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.759s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.759s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.759s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.759s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.761s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.762s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.764s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.764s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.764s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.766s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.767s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.768s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.769s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.771s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.772s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.773s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.773s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.773s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.791s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.791s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.791s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.826s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.827s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.828s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.830s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.856s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.858s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.859s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.884s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.889s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.917s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.918s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stdout.log deleted file mode 100644 index b312fed..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stdout_stderr.log deleted file mode 100644 index b312fed..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/streams.log deleted file mode 100644 index 2b6b6b4..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-04-40/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.507s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.288s] running egg_info -[3.337s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.340s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.340s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.340s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.341s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.461s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.461s] adding license file 'LICENSE' -[3.462s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.462s] running build -[3.462s] running build_py -[3.464s] copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.464s] running install -[3.475s] running install_lib -[3.519s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.522s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.524s] running install_data -[3.538s] running install_egg_info -[3.575s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.575s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.577s] running install_scripts -[3.882s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.882s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.943s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/events.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/events.log deleted file mode 100644 index 606e303..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-04-40/events.log +++ /dev/null @@ -1,61 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000924] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.002574] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.102312] (-) TimerEvent: {} -[0.203601] (-) TimerEvent: {} -[0.306023] (-) TimerEvent: {} -[0.410813] (-) TimerEvent: {} -[0.515547] (-) TimerEvent: {} -[0.628263] (-) TimerEvent: {} -[0.731540] (-) TimerEvent: {} -[0.833678] (-) TimerEvent: {} -[0.938515] (-) TimerEvent: {} -[1.042206] (-) TimerEvent: {} -[1.166316] (-) TimerEvent: {} -[1.344232] (-) TimerEvent: {} -[1.481161] (-) TimerEvent: {} -[1.617557] (-) TimerEvent: {} -[1.732030] (-) TimerEvent: {} -[1.839376] (-) TimerEvent: {} -[2.082687] (-) TimerEvent: {} -[2.207270] (-) TimerEvent: {} -[2.352217] (-) TimerEvent: {} -[2.504092] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.511358] (-) TimerEvent: {} -[2.623686] (-) TimerEvent: {} -[2.746190] (-) TimerEvent: {} -[2.867254] (-) TimerEvent: {} -[3.176363] (-) TimerEvent: {} -[3.288654] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.291626] (-) TimerEvent: {} -[3.339617] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.342609] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.342853] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.342964] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.343098] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.415854] (-) TimerEvent: {} -[3.462265] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.463315] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.464428] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.464674] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.464781] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.465033] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.466502] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.476591] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.518417] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.521452] (-) TimerEvent: {} -[3.524548] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.526468] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.540410] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.576358] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.577753] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.579119] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.653888] (-) TimerEvent: {} -[3.760336] (-) TimerEvent: {} -[3.863701] (-) TimerEvent: {} -[3.884237] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.884772] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.943777] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.966254] (-) TimerEvent: {} -[3.971351] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.980813] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-04-40/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-04-40/logger_all.log deleted file mode 100644 index 6381264..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-04-40/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.272s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.273s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.388s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.388s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.388s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.388s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.389s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.389s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.389s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.389s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.389s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.390s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.439s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.439s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.439s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.439s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.439s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.440s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.440s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.440s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.441s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.441s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.442s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.442s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.442s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.442s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.442s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.443s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.444s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.447s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.448s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.448s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.448s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.448s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.448s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.511s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.512s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.545s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.567s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.617s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.617s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.618s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.621s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.623s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.623s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.634s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.634s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.636s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.637s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.639s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.641s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.498s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.500s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.500s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.131s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.566s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.574s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.575s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.576s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.576s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.576s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.577s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.577s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.577s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.578s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.579s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.580s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.580s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.580s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.581s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.582s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.587s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.590s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.591s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.591s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.594s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.599s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.601s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.622s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.622s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.624s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.666s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.667s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.669s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.672s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.706s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.707s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.708s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.727s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.728s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.759s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.760s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stdout.log deleted file mode 100644 index b312fed..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stdout_stderr.log deleted file mode 100644 index b312fed..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/streams.log deleted file mode 100644 index e621d3e..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-06-37/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.530s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.303s] running egg_info -[3.351s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.352s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.355s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.355s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.355s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.449s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.449s] adding license file 'LICENSE' -[3.450s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.451s] running build -[3.453s] running build_py -[3.453s] copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.453s] running install -[3.466s] running install_lib -[3.510s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.517s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc -[3.518s] running install_data -[3.518s] running install_egg_info -[3.582s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.582s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.583s] running install_scripts -[3.870s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.873s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.922s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/events.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/events.log deleted file mode 100644 index b507808..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-06-37/events.log +++ /dev/null @@ -1,59 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.002975] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.003099] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.209015] (-) TimerEvent: {} -[0.314982] (-) TimerEvent: {} -[0.683515] (-) TimerEvent: {} -[0.795051] (-) TimerEvent: {} -[0.903000] (-) TimerEvent: {} -[1.007582] (-) TimerEvent: {} -[1.120857] (-) TimerEvent: {} -[1.233168] (-) TimerEvent: {} -[1.337795] (-) TimerEvent: {} -[1.452840] (-) TimerEvent: {} -[1.590108] (-) TimerEvent: {} -[1.718316] (-) TimerEvent: {} -[1.821467] (-) TimerEvent: {} -[1.929616] (-) TimerEvent: {} -[2.043500] (-) TimerEvent: {} -[2.150893] (-) TimerEvent: {} -[2.271514] (-) TimerEvent: {} -[2.372724] (-) TimerEvent: {} -[2.504560] (-) TimerEvent: {} -[2.528715] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.676510] (-) TimerEvent: {} -[2.818441] (-) TimerEvent: {} -[3.086241] (-) TimerEvent: {} -[3.213663] (-) TimerEvent: {} -[3.296905] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.316607] (-) TimerEvent: {} -[3.353647] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.354754] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.355968] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.357910] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.358064] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.428825] (-) TimerEvent: {} -[3.451669] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.452453] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.452656] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.453279] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.453687] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.456410] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.456502] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.465698] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.512456] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/AbstractRobot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.519004] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/AbstractRobot.py to AbstractRobot.cpython-312.pyc\n'} -[3.521078] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.521277] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.534266] (-) TimerEvent: {} -[3.584044] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.584841] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.586063] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.696626] (-) TimerEvent: {} -[3.815309] (-) TimerEvent: {} -[3.873042] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.876233] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.924831] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.927448] (-) TimerEvent: {} -[3.971157] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.978024] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-06-37/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-06-37/logger_all.log deleted file mode 100644 index 38cf76b..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-06-37/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.317s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.317s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.429s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.429s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.429s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.429s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.429s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.430s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.430s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.430s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.430s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.430s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.487s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.488s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.488s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.488s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.488s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.488s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.535s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.535s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.584s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.616s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.667s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.667s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.667s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.668s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.668s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.668s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.668s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.668s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.668s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.669s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.669s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.674s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.674s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.675s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.685s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.686s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.687s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.687s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.688s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.688s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.433s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.434s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.435s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.205s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.599s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.622s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.623s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.624s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.629s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.630s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.630s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.630s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.631s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.633s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.633s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.635s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.635s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.635s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.637s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.638s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.640s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.641s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.642s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.643s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.643s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.643s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.643s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.670s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.672s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.672s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.708s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.710s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.711s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.712s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.737s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.737s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.738s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.754s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.755s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.777s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.778s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/streams.log deleted file mode 100644 index 3e0a9db..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-10-39/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.318s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.110s] running egg_info -[3.173s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.173s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.174s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.175s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.175s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.253s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.254s] adding license file 'LICENSE' -[3.257s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.259s] running build -[3.260s] running build_py -[3.260s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.260s] running install -[3.280s] running install_lib -[3.323s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.327s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.331s] running install_data -[3.331s] running install_egg_info -[3.385s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.388s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.388s] running install_scripts -[3.721s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.722s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.780s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/events.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/events.log deleted file mode 100644 index af72f2b..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-10-39/events.log +++ /dev/null @@ -1,55 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.008541] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.008613] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.103838] (-) TimerEvent: {} -[0.204670] (-) TimerEvent: {} -[0.305289] (-) TimerEvent: {} -[0.408428] (-) TimerEvent: {} -[0.757676] (-) TimerEvent: {} -[0.911966] (-) TimerEvent: {} -[1.013843] (-) TimerEvent: {} -[1.621985] (-) TimerEvent: {} -[1.739729] (-) TimerEvent: {} -[2.052563] (-) TimerEvent: {} -[2.221576] (-) TimerEvent: {} -[2.323147] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.328183] (-) TimerEvent: {} -[2.456410] (-) TimerEvent: {} -[2.561677] (-) TimerEvent: {} -[2.689903] (-) TimerEvent: {} -[2.818849] (-) TimerEvent: {} -[2.934105] (-) TimerEvent: {} -[3.049435] (-) TimerEvent: {} -[3.118471] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.160569] (-) TimerEvent: {} -[3.180518] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.181633] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.182202] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.182880] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.183529] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.261228] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.262277] (-) TimerEvent: {} -[3.262420] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.265614] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.267770] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.268109] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.268483] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.268957] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.288124] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.331024] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.335610] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.339169] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.339547] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.375812] (-) TimerEvent: {} -[3.392549] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.395705] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.396838] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.482462] (-) TimerEvent: {} -[3.583908] (-) TimerEvent: {} -[3.688607] (-) TimerEvent: {} -[3.729162] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.730628] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.787582] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.788752] (-) TimerEvent: {} -[3.816682] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.817980] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-10-39/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-10-39/logger_all.log deleted file mode 100644 index 31cedf8..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-10-39/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.305s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.305s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.423s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.423s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.424s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.424s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.424s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.424s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.424s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.424s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.424s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.469s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.470s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.470s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.472s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.473s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.473s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.485s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.486s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.486s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.486s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.486s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.486s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.569s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.570s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.601s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.635s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.686s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.687s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.687s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.689s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.690s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.690s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.709s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.709s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.711s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.712s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.713s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.713s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.495s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.495s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.496s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.016s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.477s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.486s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.487s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.488s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.488s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.488s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.488s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.489s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.489s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.490s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.490s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.491s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.491s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.494s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.496s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.498s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.500s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.502s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.502s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.504s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.504s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.505s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.505s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.525s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.526s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.526s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.573s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.574s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.577s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.579s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.602s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.603s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.603s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.628s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.628s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.649s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.650s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/streams.log deleted file mode 100644 index 1d27a8b..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-11-34/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.434s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.148s] running egg_info -[3.203s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.205s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.205s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.205s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.205s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.290s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.295s] adding license file 'LICENSE' -[3.295s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.295s] running build -[3.295s] running build_py -[3.295s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.295s] running install -[3.305s] running install_lib -[3.358s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.361s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.362s] running install_data -[3.362s] running install_egg_info -[3.405s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.406s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.411s] running install_scripts -[3.711s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.712s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.782s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/events.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/events.log deleted file mode 100644 index b5c8b03..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-11-34/events.log +++ /dev/null @@ -1,55 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000389] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.000486] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.094764] (-) TimerEvent: {} -[0.196004] (-) TimerEvent: {} -[0.299156] (-) TimerEvent: {} -[0.400302] (-) TimerEvent: {} -[0.516036] (-) TimerEvent: {} -[0.618923] (-) TimerEvent: {} -[0.728017] (-) TimerEvent: {} -[0.830297] (-) TimerEvent: {} -[0.934379] (-) TimerEvent: {} -[1.062772] (-) TimerEvent: {} -[1.163875] (-) TimerEvent: {} -[1.271189] (-) TimerEvent: {} -[1.473785] (-) TimerEvent: {} -[1.889327] (-) TimerEvent: {} -[2.014296] (-) TimerEvent: {} -[2.142902] (-) TimerEvent: {} -[2.304096] (-) TimerEvent: {} -[2.430421] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.435286] (-) TimerEvent: {} -[2.552193] (-) TimerEvent: {} -[2.905869] (-) TimerEvent: {} -[3.143318] (-) TimerEvent: {} -[3.148080] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.202029] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.204875] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.205171] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.205284] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.205380] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.289156] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.290197] (-) TimerEvent: {} -[3.294924] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.295146] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.295225] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.295291] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.295354] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.295416] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.305216] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.356469] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.361351] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.362721] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.362899] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.404068] (-) TimerEvent: {} -[3.404959] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.406396] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.410632] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.608180] (-) TimerEvent: {} -[3.707529] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.711969] (-) TimerEvent: {} -[3.712082] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.781433] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.805431] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.806569] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-11-34/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-11-34/logger_all.log deleted file mode 100644 index a6cfb77..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-11-34/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.286s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.286s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.385s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.386s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.386s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.386s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.386s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.386s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.386s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.386s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.386s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.387s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.446s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.446s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.446s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.447s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.448s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.448s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.448s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.448s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.448s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.448s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.449s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.450s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.456s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.456s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.456s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.456s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.456s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.456s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.525s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.525s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.566s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.612s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.671s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.671s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.671s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.678s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.680s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.680s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.690s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.690s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.691s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.692s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.692s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.692s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.511s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.514s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.514s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.116s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.464s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.471s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.472s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.473s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.474s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.474s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.474s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.474s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.475s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.476s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.476s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.477s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.478s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.478s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.479s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.480s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.481s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.482s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.483s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.484s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.485s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.485s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.485s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.508s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.508s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.508s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.544s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.545s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.546s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.548s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.575s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.576s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.577s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.596s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.597s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.618s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.619s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/streams.log deleted file mode 100644 index 5734e4b..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-13-43/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.441s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.281s] running egg_info -[3.343s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.344s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.344s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.345s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.345s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.454s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.455s] adding license file 'LICENSE' -[3.456s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.456s] running build -[3.456s] running build_py -[3.456s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.457s] running install -[3.468s] running install_lib -[3.513s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.516s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.518s] running install_data -[3.518s] running install_egg_info -[3.571s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.572s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.573s] running install_scripts -[3.915s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.916s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.982s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/events.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/events.log deleted file mode 100644 index b1b0503..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-13-43/events.log +++ /dev/null @@ -1,66 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.003655] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.003933] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.104936] (-) TimerEvent: {} -[0.214382] (-) TimerEvent: {} -[0.316092] (-) TimerEvent: {} -[0.429674] (-) TimerEvent: {} -[0.532171] (-) TimerEvent: {} -[0.653940] (-) TimerEvent: {} -[0.849668] (-) TimerEvent: {} -[0.953775] (-) TimerEvent: {} -[1.055090] (-) TimerEvent: {} -[1.161777] (-) TimerEvent: {} -[1.265125] (-) TimerEvent: {} -[1.365683] (-) TimerEvent: {} -[1.467255] (-) TimerEvent: {} -[1.569835] (-) TimerEvent: {} -[1.670693] (-) TimerEvent: {} -[1.773144] (-) TimerEvent: {} -[1.876167] (-) TimerEvent: {} -[1.978317] (-) TimerEvent: {} -[2.079292] (-) TimerEvent: {} -[2.309616] (-) TimerEvent: {} -[2.415217] (-) TimerEvent: {} -[2.440820] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.527508] (-) TimerEvent: {} -[2.631032] (-) TimerEvent: {} -[2.740167] (-) TimerEvent: {} -[2.842159] (-) TimerEvent: {} -[2.947960] (-) TimerEvent: {} -[3.052494] (-) TimerEvent: {} -[3.157254] (-) TimerEvent: {} -[3.263959] (-) TimerEvent: {} -[3.285116] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.346218] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.348044] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.348291] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.348428] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.348553] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.365730] (-) TimerEvent: {} -[3.457419] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.458341] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.459468] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.459669] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.459747] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.460199] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.461129] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.465979] (-) TimerEvent: {} -[3.471397] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.514687] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.520078] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.521470] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.521676] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.573983] (-) TimerEvent: {} -[3.575017] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.575637] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.576713] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.677961] (-) TimerEvent: {} -[3.779436] (-) TimerEvent: {} -[3.880714] (-) TimerEvent: {} -[3.918090] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.919518] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.981752] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.987240] (-) TimerEvent: {} -[4.010538] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.012620] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-13-43/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-13-43/logger_all.log deleted file mode 100644 index 44a17d8..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-13-43/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.332s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.332s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.428s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.490s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.490s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.490s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.490s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.497s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.498s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.498s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.498s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.498s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.498s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.559s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.559s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.597s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.626s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.693s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.693s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.694s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.694s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.694s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.694s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.694s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.694s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.695s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.695s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.695s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.702s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.703s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.703s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.718s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.718s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.720s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.721s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.723s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.723s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.542s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.543s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.544s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.146s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.687s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.695s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.696s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.697s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.697s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.698s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.698s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.698s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.699s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.700s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.701s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.702s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.702s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.702s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.704s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.705s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.706s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.707s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.708s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.711s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.712s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.712s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.712s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.730s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.731s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.731s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.773s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.774s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.776s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.778s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.800s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.802s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.802s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.823s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.824s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.851s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.852s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/streams.log deleted file mode 100644 index f76debb..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-16-18/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.506s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.315s] running egg_info -[3.360s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.362s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.363s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.364s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.364s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.463s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.464s] adding license file 'LICENSE' -[3.465s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.465s] running build -[3.466s] running build_py -[3.466s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.467s] running install -[3.479s] running install_lib -[3.526s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.531s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.533s] running install_data -[3.534s] running install_egg_info -[3.584s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.588s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.590s] running install_scripts -[3.893s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.894s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.955s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/events.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/events.log deleted file mode 100644 index 1eb2bf1..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-16-18/events.log +++ /dev/null @@ -1,67 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001483] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001639] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.096047] (-) TimerEvent: {} -[0.197727] (-) TimerEvent: {} -[0.313509] (-) TimerEvent: {} -[0.414330] (-) TimerEvent: {} -[0.517426] (-) TimerEvent: {} -[0.618463] (-) TimerEvent: {} -[0.731614] (-) TimerEvent: {} -[0.834066] (-) TimerEvent: {} -[0.937868] (-) TimerEvent: {} -[1.038571] (-) TimerEvent: {} -[1.141415] (-) TimerEvent: {} -[1.243265] (-) TimerEvent: {} -[1.345677] (-) TimerEvent: {} -[1.450474] (-) TimerEvent: {} -[1.556870] (-) TimerEvent: {} -[1.665501] (-) TimerEvent: {} -[1.769217] (-) TimerEvent: {} -[1.878665] (-) TimerEvent: {} -[1.980662] (-) TimerEvent: {} -[2.089976] (-) TimerEvent: {} -[2.203602] (-) TimerEvent: {} -[2.307445] (-) TimerEvent: {} -[2.475996] (-) TimerEvent: {} -[2.502471] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.583710] (-) TimerEvent: {} -[2.687742] (-) TimerEvent: {} -[2.788869] (-) TimerEvent: {} -[2.891426] (-) TimerEvent: {} -[2.992546] (-) TimerEvent: {} -[3.094683] (-) TimerEvent: {} -[3.200556] (-) TimerEvent: {} -[3.301920] (-) TimerEvent: {} -[3.316533] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.361728] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.363116] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.364464] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.365468] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.365643] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.404076] (-) TimerEvent: {} -[3.464033] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.465083] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.466576] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.466940] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.467086] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.467571] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.468391] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.479670] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.510633] (-) TimerEvent: {} -[3.526975] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.532665] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.534850] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.535126] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.584407] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.588549] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.591516] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.611640] (-) TimerEvent: {} -[3.712268] (-) TimerEvent: {} -[3.813916] (-) TimerEvent: {} -[3.894377] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.895132] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.926867] (-) TimerEvent: {} -[3.955747] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.980032] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.984243] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-16-18/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-16-18/logger_all.log deleted file mode 100644 index e3cf44c..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-16-18/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.354s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.355s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.444s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.444s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.444s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.444s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.444s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.445s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.445s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.445s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.446s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.446s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.498s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.498s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.498s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.499s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.500s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.503s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.503s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.503s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.503s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.503s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.503s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.561s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.561s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.597s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.626s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.725s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.726s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.726s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.727s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.735s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.736s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.737s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.747s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.748s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.749s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.750s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.752s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.752s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.575s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.576s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.576s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.245s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.694s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.701s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.702s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.703s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.703s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.703s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.704s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.704s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.704s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.706s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.707s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.708s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.709s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.709s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.710s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.711s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.713s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.714s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.715s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.716s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.717s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.717s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.717s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.745s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.746s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.746s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.780s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.780s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.781s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.783s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.801s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.802s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.802s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.821s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.821s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.854s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.855s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/streams.log deleted file mode 100644 index 7a4dbda..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-23/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.290s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.016s] running egg_info -[3.060s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.062s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.062s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.062s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.062s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.160s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.161s] adding license file 'LICENSE' -[3.164s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.165s] running build -[3.165s] running build_py -[3.166s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.166s] running install -[3.176s] running install_lib -[3.220s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.224s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.225s] running install_data -[3.225s] running install_egg_info -[3.275s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.281s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.286s] running install_scripts -[3.565s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.568s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.628s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/events.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/events.log deleted file mode 100644 index 2bd3a35..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-23/events.log +++ /dev/null @@ -1,57 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.005356] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.005446] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.106317] (-) TimerEvent: {} -[0.208715] (-) TimerEvent: {} -[0.320377] (-) TimerEvent: {} -[0.429777] (-) TimerEvent: {} -[0.535923] (-) TimerEvent: {} -[0.667008] (-) TimerEvent: {} -[0.780368] (-) TimerEvent: {} -[0.883677] (-) TimerEvent: {} -[1.000429] (-) TimerEvent: {} -[1.104392] (-) TimerEvent: {} -[1.231743] (-) TimerEvent: {} -[1.385986] (-) TimerEvent: {} -[1.775140] (-) TimerEvent: {} -[2.039756] (-) TimerEvent: {} -[2.160451] (-) TimerEvent: {} -[2.265120] (-) TimerEvent: {} -[2.292764] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.369773] (-) TimerEvent: {} -[2.499346] (-) TimerEvent: {} -[2.601140] (-) TimerEvent: {} -[2.719751] (-) TimerEvent: {} -[2.872299] (-) TimerEvent: {} -[3.021964] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.023672] (-) TimerEvent: {} -[3.065470] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.067375] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.067740] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.067909] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.068060] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.158835] (-) TimerEvent: {} -[3.162682] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.167015] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.169619] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.170280] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.170523] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.171719] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.171923] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.181861] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.224545] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.229556] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.230864] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.231186] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.276142] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.280661] (-) TimerEvent: {} -[3.280768] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.291955] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.387251] (-) TimerEvent: {} -[3.492686] (-) TimerEvent: {} -[3.570587] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.573458] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.624730] (-) TimerEvent: {} -[3.632124] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.658048] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.660135] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-23/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-17-23/logger_all.log deleted file mode 100644 index 031327a..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-23/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.326s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.326s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.427s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.428s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.428s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.429s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.487s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.488s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.489s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.490s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.500s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.500s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.500s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.500s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.500s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.500s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.558s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.558s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.592s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.616s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.678s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.678s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.678s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.678s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.678s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.678s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.678s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.678s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.679s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.680s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.680s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.692s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.692s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.694s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.695s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.698s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.698s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.537s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.538s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.538s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[2.975s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.313s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.319s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.321s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.322s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.323s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.323s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.324s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.324s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.325s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.326s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.327s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.329s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.329s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.330s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.331s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.332s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.334s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.335s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.336s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.336s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.337s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.337s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.337s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.355s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.355s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.355s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.395s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.396s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.398s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.400s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.428s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.430s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.432s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.456s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.457s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.483s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.486s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/streams.log deleted file mode 100644 index 66f0533..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-47/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.522s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.426s] running egg_info -[3.470s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.477s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.481s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.482s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.482s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.592s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.593s] adding license file 'LICENSE' -[3.594s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.595s] running build -[3.595s] running build_py -[3.595s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.596s] running install -[3.608s] running install_lib -[3.667s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.670s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.673s] running install_data -[3.673s] running install_egg_info -[3.723s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.724s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.726s] running install_scripts -[4.063s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.068s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.130s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/events.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/events.log deleted file mode 100644 index 3faa0bf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-47/events.log +++ /dev/null @@ -1,68 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001000] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001208] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.098061] (-) TimerEvent: {} -[0.200556] (-) TimerEvent: {} -[0.301355] (-) TimerEvent: {} -[0.408195] (-) TimerEvent: {} -[0.513948] (-) TimerEvent: {} -[0.631001] (-) TimerEvent: {} -[0.732791] (-) TimerEvent: {} -[0.834735] (-) TimerEvent: {} -[0.953155] (-) TimerEvent: {} -[1.056962] (-) TimerEvent: {} -[1.162114] (-) TimerEvent: {} -[1.263789] (-) TimerEvent: {} -[1.365003] (-) TimerEvent: {} -[1.467529] (-) TimerEvent: {} -[1.569052] (-) TimerEvent: {} -[1.682945] (-) TimerEvent: {} -[1.790852] (-) TimerEvent: {} -[1.892402] (-) TimerEvent: {} -[1.993983] (-) TimerEvent: {} -[2.101888] (-) TimerEvent: {} -[2.236123] (-) TimerEvent: {} -[2.348349] (-) TimerEvent: {} -[2.476002] (-) TimerEvent: {} -[2.517017] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.577095] (-) TimerEvent: {} -[2.679597] (-) TimerEvent: {} -[2.780446] (-) TimerEvent: {} -[2.881166] (-) TimerEvent: {} -[2.997003] (-) TimerEvent: {} -[3.111519] (-) TimerEvent: {} -[3.220539] (-) TimerEvent: {} -[3.342076] (-) TimerEvent: {} -[3.427042] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.446083] (-) TimerEvent: {} -[3.471557] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.478237] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.482284] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.482692] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.483111] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.546687] (-) TimerEvent: {} -[3.592947] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.593799] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.594732] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.595720] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.595970] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.596257] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.597297] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.608788] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.651503] (-) TimerEvent: {} -[3.667726] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.671434] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.673712] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.674204] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.723178] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.725545] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.727190] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.772697] (-) TimerEvent: {} -[3.877919] (-) TimerEvent: {} -[3.984836] (-) TimerEvent: {} -[4.064418] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.068737] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.099774] (-) TimerEvent: {} -[4.130263] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.148418] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.152335] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-17-47/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-17-47/logger_all.log deleted file mode 100644 index a98e78a..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-17-47/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.318s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.318s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.430s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.430s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.430s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.430s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.430s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.430s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.431s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.431s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.491s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.492s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.493s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.494s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.495s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.496s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.497s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.501s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.501s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.502s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.502s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.502s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.502s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.568s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.568s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.603s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.624s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.676s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.676s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.676s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.676s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.677s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.677s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.678s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.680s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.681s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.681s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.695s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.696s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.697s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.699s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.701s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.701s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.542s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.542s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.542s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.206s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.814s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.821s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.821s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.822s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.823s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.823s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.823s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.823s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.824s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.824s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.825s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.825s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.825s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.826s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.826s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.827s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.828s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.828s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.829s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.830s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.831s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.831s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.832s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.853s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.855s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.856s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.891s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.892s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.894s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.901s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.928s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.929s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.930s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.949s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.950s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.974s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.975s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/streams.log deleted file mode 100644 index dab12cc..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-18-10/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.368s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.037s] running egg_info -[3.131s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.133s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.133s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.133s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.133s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.239s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.240s] adding license file 'LICENSE' -[3.240s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.241s] running build -[3.242s] running build_py -[3.242s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.243s] running install -[3.254s] running install_lib -[3.306s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.310s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.312s] running install_data -[3.312s] running install_egg_info -[3.364s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.364s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.365s] running install_scripts -[3.675s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.676s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.752s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/events.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/events.log deleted file mode 100644 index 3f4522d..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-18-10/events.log +++ /dev/null @@ -1,60 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001280] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.004088] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.100210] (-) TimerEvent: {} -[0.202884] (-) TimerEvent: {} -[0.305492] (-) TimerEvent: {} -[0.425722] (-) TimerEvent: {} -[0.527591] (-) TimerEvent: {} -[0.640768] (-) TimerEvent: {} -[0.743988] (-) TimerEvent: {} -[0.848395] (-) TimerEvent: {} -[0.949474] (-) TimerEvent: {} -[1.058760] (-) TimerEvent: {} -[1.161276] (-) TimerEvent: {} -[1.273119] (-) TimerEvent: {} -[1.374653] (-) TimerEvent: {} -[1.492564] (-) TimerEvent: {} -[1.633120] (-) TimerEvent: {} -[1.747911] (-) TimerEvent: {} -[1.851126] (-) TimerEvent: {} -[1.952394] (-) TimerEvent: {} -[2.057204] (-) TimerEvent: {} -[2.158327] (-) TimerEvent: {} -[2.294844] (-) TimerEvent: {} -[2.367138] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.486995] (-) TimerEvent: {} -[3.033337] (-) TimerEvent: {} -[3.039998] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.133380] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.136091] (-) TimerEvent: {} -[3.137172] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.137354] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.137432] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.137500] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.238195] (-) TimerEvent: {} -[3.242763] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.243530] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.244272] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.245360] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.245556] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.245689] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.247177] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.257807] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.309355] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.314140] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.316243] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.316419] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.344091] (-) TimerEvent: {} -[3.365833] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.368057] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.369295] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.454858] (-) TimerEvent: {} -[3.556196] (-) TimerEvent: {} -[3.661198] (-) TimerEvent: {} -[3.677959] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.679944] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.756101] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.763319] (-) TimerEvent: {} -[3.775491] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.780481] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-18-10/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-18-10/logger_all.log deleted file mode 100644 index be2b980..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-18-10/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.309s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.309s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.416s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.417s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.417s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.417s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.417s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.417s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.418s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.418s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.419s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.476s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.478s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.479s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.480s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.489s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.574s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.575s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.620s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.644s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.687s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.688s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.688s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.689s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.694s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.694s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.695s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.720s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.721s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.726s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.728s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.730s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.730s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.508s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.509s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.509s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.064s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.448s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.454s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.455s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.456s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.457s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.457s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.457s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.457s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.458s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.459s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.459s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.460s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.460s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.461s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.462s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.462s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.463s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.464s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.465s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.466s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.467s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.468s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.468s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.491s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.492s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.493s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.517s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.518s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.519s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.521s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.549s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.551s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.553s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.573s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.574s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.600s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.601s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/streams.log deleted file mode 100644 index 8851bd2..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-19-08/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.453s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.293s] running egg_info -[3.343s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.344s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.344s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.344s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.344s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.450s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.455s] adding license file 'LICENSE' -[3.455s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.456s] running build -[3.456s] running build_py -[3.456s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.456s] running install -[3.466s] running install_lib -[3.519s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.524s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.526s] running install_data -[3.526s] running install_egg_info -[3.579s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.588s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.589s] running install_scripts -[3.916s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.916s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.991s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/events.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/events.log deleted file mode 100644 index 182781f..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-19-08/events.log +++ /dev/null @@ -1,62 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001781] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.004793] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.204572] (-) TimerEvent: {} -[0.337223] (-) TimerEvent: {} -[0.438695] (-) TimerEvent: {} -[0.713385] (-) TimerEvent: {} -[0.826074] (-) TimerEvent: {} -[0.930425] (-) TimerEvent: {} -[1.038017] (-) TimerEvent: {} -[1.177101] (-) TimerEvent: {} -[1.285466] (-) TimerEvent: {} -[1.453047] (-) TimerEvent: {} -[1.559744] (-) TimerEvent: {} -[1.675498] (-) TimerEvent: {} -[1.784759] (-) TimerEvent: {} -[1.912839] (-) TimerEvent: {} -[2.033804] (-) TimerEvent: {} -[2.137529] (-) TimerEvent: {} -[2.308738] (-) TimerEvent: {} -[2.433175] (-) TimerEvent: {} -[2.454900] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.601164] (-) TimerEvent: {} -[2.708618] (-) TimerEvent: {} -[2.820298] (-) TimerEvent: {} -[2.926690] (-) TimerEvent: {} -[3.040625] (-) TimerEvent: {} -[3.145064] (-) TimerEvent: {} -[3.257696] (-) TimerEvent: {} -[3.295698] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.346970] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.348663] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.349634] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.349725] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.349796] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.368568] (-) TimerEvent: {} -[3.454830] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.460522] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.460873] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.461117] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.461245] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.461343] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.461439] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.469352] (-) TimerEvent: {} -[3.471479] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.523929] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.529586] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.531367] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.531608] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.574915] (-) TimerEvent: {} -[3.582922] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.593506] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.593994] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.676169] (-) TimerEvent: {} -[3.796691] (-) TimerEvent: {} -[3.909186] (-) TimerEvent: {} -[3.921431] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.921748] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.993854] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.009695] (-) TimerEvent: {} -[4.019752] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.020681] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-19-08/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-19-08/logger_all.log deleted file mode 100644 index feed528..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-19-08/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.380s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.380s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.476s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.476s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.476s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.476s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.476s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.476s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.544s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.545s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.546s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.546s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.546s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.547s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.547s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.547s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.547s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.547s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.547s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.548s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.549s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.550s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.550s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.550s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.550s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.550s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.553s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.554s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.554s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.555s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.555s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.556s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.615s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.615s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.652s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.673s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.752s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.753s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.754s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.754s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.758s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.760s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.760s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.771s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.772s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.773s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.774s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.776s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.776s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.551s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.552s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.552s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.216s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.753s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.761s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.762s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.763s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.763s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.764s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.764s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.764s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.765s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.766s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.767s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.769s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.769s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.770s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.771s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.772s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.773s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.774s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.775s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.776s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.776s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.776s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.777s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.799s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.799s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.799s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.836s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.838s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.840s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.845s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.873s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.878s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.879s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.905s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.907s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.930s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.930s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/streams.log deleted file mode 100644 index 804d063..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-20-59/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.361s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.187s] running egg_info -[3.236s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.237s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.239s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.239s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.239s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.334s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.335s] adding license file 'LICENSE' -[3.336s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.337s] running build -[3.337s] running build_py -[3.337s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.338s] running install -[3.349s] running install_lib -[3.400s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.415s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.416s] running install_data -[3.416s] running install_egg_info -[3.467s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.468s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.470s] running install_scripts -[3.773s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.774s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.838s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/events.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/events.log deleted file mode 100644 index 86e8f63..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-20-59/events.log +++ /dev/null @@ -1,63 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001050] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001286] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.100270] (-) TimerEvent: {} -[0.201970] (-) TimerEvent: {} -[0.312299] (-) TimerEvent: {} -[0.424223] (-) TimerEvent: {} -[0.529283] (-) TimerEvent: {} -[0.635075] (-) TimerEvent: {} -[0.737743] (-) TimerEvent: {} -[0.839365] (-) TimerEvent: {} -[0.939860] (-) TimerEvent: {} -[1.053955] (-) TimerEvent: {} -[1.162768] (-) TimerEvent: {} -[1.302547] (-) TimerEvent: {} -[1.406494] (-) TimerEvent: {} -[1.534672] (-) TimerEvent: {} -[1.655120] (-) TimerEvent: {} -[1.762779] (-) TimerEvent: {} -[1.971812] (-) TimerEvent: {} -[2.161094] (-) TimerEvent: {} -[2.276359] (-) TimerEvent: {} -[2.356058] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.376503] (-) TimerEvent: {} -[2.481455] (-) TimerEvent: {} -[2.586395] (-) TimerEvent: {} -[2.695475] (-) TimerEvent: {} -[2.799265] (-) TimerEvent: {} -[2.910359] (-) TimerEvent: {} -[3.022870] (-) TimerEvent: {} -[3.132377] (-) TimerEvent: {} -[3.184510] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.236495] (-) TimerEvent: {} -[3.237327] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.238567] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.239680] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.239854] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.239932] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.333879] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.335824] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.337366] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.337613] (-) TimerEvent: {} -[3.337759] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.337874] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.338543] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.339234] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.349837] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.400383] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.412097] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.416751] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.416839] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.442125] (-) TimerEvent: {} -[3.466932] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.469270] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.470962] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.565395] (-) TimerEvent: {} -[3.671166] (-) TimerEvent: {} -[3.772862] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.774197] (-) TimerEvent: {} -[3.775365] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.837268] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.860713] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.862886] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-20-59/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-20-59/logger_all.log deleted file mode 100644 index 6abd470..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-20-59/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.381s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.381s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.483s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.484s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.484s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.484s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.484s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.484s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.484s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.551s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.551s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.551s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.551s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.551s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.552s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.552s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.552s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.553s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.553s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.553s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.553s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.554s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.554s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.554s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.554s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.555s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.556s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.559s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.560s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.560s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.560s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.560s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.560s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.631s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.631s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.677s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.708s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.766s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.767s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.767s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.768s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.770s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.771s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.771s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.787s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.788s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.789s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.790s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.791s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.791s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.655s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.656s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.656s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.132s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.610s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.618s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.619s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.621s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.621s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.622s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.622s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.622s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.622s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.623s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.624s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.624s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.625s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.625s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.626s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.627s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.628s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.629s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.630s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.630s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.631s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.631s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.631s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.653s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.654s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.654s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.689s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.689s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.691s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.694s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.722s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.724s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.725s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.744s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.744s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.765s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.766s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/streams.log deleted file mode 100644 index 525724a..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-34/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.644s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.487s] running egg_info -[3.542s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.543s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.545s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.545s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.545s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.641s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.642s] adding license file 'LICENSE' -[3.642s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.643s] running build -[3.643s] running build_py -[3.643s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.643s] running install -[3.653s] running install_lib -[3.703s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.707s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.708s] running install_data -[3.708s] running install_egg_info -[3.759s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.759s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.761s] running install_scripts -[4.079s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[4.080s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[4.153s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/events.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/events.log deleted file mode 100644 index 3719368..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-34/events.log +++ /dev/null @@ -1,69 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.000408] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.000513] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.102478] (-) TimerEvent: {} -[0.204974] (-) TimerEvent: {} -[0.315834] (-) TimerEvent: {} -[0.418203] (-) TimerEvent: {} -[0.520139] (-) TimerEvent: {} -[0.622164] (-) TimerEvent: {} -[0.725956] (-) TimerEvent: {} -[0.833889] (-) TimerEvent: {} -[0.936450] (-) TimerEvent: {} -[1.045324] (-) TimerEvent: {} -[1.157382] (-) TimerEvent: {} -[1.263761] (-) TimerEvent: {} -[1.374004] (-) TimerEvent: {} -[1.479779] (-) TimerEvent: {} -[1.612807] (-) TimerEvent: {} -[1.729297] (-) TimerEvent: {} -[1.830713] (-) TimerEvent: {} -[1.931877] (-) TimerEvent: {} -[2.033920] (-) TimerEvent: {} -[2.140320] (-) TimerEvent: {} -[2.247540] (-) TimerEvent: {} -[2.350587] (-) TimerEvent: {} -[2.451912] (-) TimerEvent: {} -[2.552770] (-) TimerEvent: {} -[2.637771] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.653189] (-) TimerEvent: {} -[2.754511] (-) TimerEvent: {} -[2.855999] (-) TimerEvent: {} -[2.957335] (-) TimerEvent: {} -[3.058762] (-) TimerEvent: {} -[3.160671] (-) TimerEvent: {} -[3.305888] (-) TimerEvent: {} -[3.408682] (-) TimerEvent: {} -[3.487399] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.509937] (-) TimerEvent: {} -[3.541973] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.543394] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.544227] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.545357] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.545492] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.610393] (-) TimerEvent: {} -[3.640741] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.641889] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.642491] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.642923] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.643282] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.643419] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.643497] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.653317] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.702723] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.707001] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.708601] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.708813] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.711513] (-) TimerEvent: {} -[3.758717] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.759569] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.761009] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.812953] (-) TimerEvent: {} -[3.914341] (-) TimerEvent: {} -[4.015325] (-) TimerEvent: {} -[4.079364] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[4.080616] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[4.120169] (-) TimerEvent: {} -[4.152028] (WRover_Mock) CommandEnded: {'returncode': 0} -[4.174405] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[4.177182] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-34/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-22-34/logger_all.log deleted file mode 100644 index b35c480..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-34/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.283s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.283s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.376s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.376s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.376s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.376s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.376s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.377s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.377s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.377s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.378s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.424s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.425s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.426s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.427s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.428s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.431s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.432s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.433s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.433s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.433s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.485s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.485s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.531s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.585s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.641s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.641s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.642s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.644s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.645s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.646s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.656s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.657s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.658s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.660s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.661s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.661s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.504s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.506s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.506s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.291s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.800s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.807s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.809s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.810s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.810s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.811s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.811s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.811s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.812s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.812s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.813s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.814s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.815s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.815s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.816s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.817s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.818s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.819s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.820s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.821s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.822s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.824s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.824s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.848s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.848s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.849s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.887s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.888s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.890s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.891s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.923s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.925s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.927s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.949s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.952s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.975s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.975s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/streams.log deleted file mode 100644 index 7114ea2..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-55/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.476s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.251s] running egg_info -[3.303s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.304s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.305s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.305s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.305s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.403s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.403s] adding license file 'LICENSE' -[3.403s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.404s] running build -[3.404s] running build_py -[3.404s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.406s] running install -[3.416s] running install_lib -[3.466s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.470s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.471s] running install_data -[3.472s] running install_egg_info -[3.525s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.526s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.527s] running install_scripts -[3.859s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.860s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.917s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/events.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/events.log deleted file mode 100644 index c7c69cd..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-55/events.log +++ /dev/null @@ -1,63 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.001303] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.001455] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.099616] (-) TimerEvent: {} -[0.208372] (-) TimerEvent: {} -[0.308977] (-) TimerEvent: {} -[0.409684] (-) TimerEvent: {} -[0.516963] (-) TimerEvent: {} -[0.788877] (-) TimerEvent: {} -[0.897944] (-) TimerEvent: {} -[1.011337] (-) TimerEvent: {} -[1.114134] (-) TimerEvent: {} -[1.215146] (-) TimerEvent: {} -[1.318857] (-) TimerEvent: {} -[1.427846] (-) TimerEvent: {} -[1.610220] (-) TimerEvent: {} -[1.711496] (-) TimerEvent: {} -[1.828826] (-) TimerEvent: {} -[1.930144] (-) TimerEvent: {} -[2.170659] (-) TimerEvent: {} -[2.271335] (-) TimerEvent: {} -[2.427523] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.480719] (-) TimerEvent: {} -[2.584381] (-) TimerEvent: {} -[2.692029] (-) TimerEvent: {} -[2.794298] (-) TimerEvent: {} -[2.897628] (-) TimerEvent: {} -[3.011403] (-) TimerEvent: {} -[3.114039] (-) TimerEvent: {} -[3.216003] (-) TimerEvent: {} -[3.252326] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.297417] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.305353] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.306046] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.306178] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.306351] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.321831] (-) TimerEvent: {} -[3.403410] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.404548] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.404831] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.405536] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.405730] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.405875] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.407446] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.417406] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.423298] (-) TimerEvent: {} -[3.466805] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.470830] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.472819] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.473034] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.524031] (-) TimerEvent: {} -[3.526712] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.527643] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.528768] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.632217] (-) TimerEvent: {} -[3.736093] (-) TimerEvent: {} -[3.840029] (-) TimerEvent: {} -[3.857266] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.860978] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.918139] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.938620] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.942870] (-) TimerEvent: {} -[3.944618] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-22-55/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-22-55/logger_all.log deleted file mode 100644 index 392cb6c..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-22-55/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.315s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.315s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.420s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.421s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.421s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.421s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.421s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.421s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.421s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.421s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.422s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.476s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.477s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.481s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.482s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.483s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.484s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.485s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.489s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.489s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.551s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.551s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.600s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.636s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.698s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.698s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.698s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.698s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.699s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.699s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.699s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.699s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.699s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.699s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.699s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.701s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.701s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.703s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.711s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.711s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.712s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.713s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.713s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.714s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.508s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.508s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.508s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.182s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.620s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.628s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.629s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.630s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.630s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.630s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.631s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.631s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.631s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.632s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.633s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.634s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.634s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.634s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.635s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.636s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.637s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.638s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.639s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.640s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.641s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.641s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.644s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.666s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.668s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.668s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.704s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.704s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.706s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.707s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.731s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.732s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.733s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.749s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.750s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.776s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.777s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/command.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/command.log deleted file mode 100644 index 31e2c70..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/command.log +++ /dev/null @@ -1,2 +0,0 @@ -Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stderr.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stderr.log deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stdout.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stdout.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stdout.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stdout_stderr.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stdout_stderr.log deleted file mode 100644 index ee55cbf..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/stdout_stderr.log +++ /dev/null @@ -1,23 +0,0 @@ -running egg_info -writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -adding license file 'LICENSE' -writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -running build -running build_py -copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -running install -running install_lib -copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -running install_data -running install_egg_info -removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -running install_scripts -Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/streams.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/streams.log deleted file mode 100644 index 16822f0..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-23-15/WRover_Mock/streams.log +++ /dev/null @@ -1,25 +0,0 @@ -[2.408s] Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[3.154s] running egg_info -[3.216s] writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO -[3.216s] writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt -[3.216s] writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt -[3.218s] writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt -[3.218s] writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt -[3.300s] reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.301s] adding license file 'LICENSE' -[3.304s] writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt' -[3.307s] running build -[3.307s] running build_py -[3.308s] copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock -[3.308s] running install -[3.320s] running install_lib -[3.377s] copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock -[3.384s] byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc -[3.387s] running install_data -[3.387s] running install_egg_info -[3.443s] removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it) -[3.444s] Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info -[3.446s] running install_scripts -[3.755s] Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock -[3.758s] writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log' -[3.831s] Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/events.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/events.log deleted file mode 100644 index 1783455..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-23-15/events.log +++ /dev/null @@ -1,60 +0,0 @@ -[0.000000] (-) TimerEvent: {} -[0.014004] (WRover_Mock) JobQueued: {'identifier': 'WRover_Mock', 'dependencies': OrderedDict()} -[0.014327] (WRover_Mock) JobStarted: {'identifier': 'WRover_Mock'} -[0.100671] (-) TimerEvent: {} -[0.201502] (-) TimerEvent: {} -[0.306779] (-) TimerEvent: {} -[0.410777] (-) TimerEvent: {} -[0.524076] (-) TimerEvent: {} -[0.655421] (-) TimerEvent: {} -[0.762445] (-) TimerEvent: {} -[0.863947] (-) TimerEvent: {} -[0.965113] (-) TimerEvent: {} -[1.068879] (-) TimerEvent: {} -[1.256260] (-) TimerEvent: {} -[1.358498] (-) TimerEvent: {} -[1.465175] (-) TimerEvent: {} -[1.675550] (-) TimerEvent: {} -[1.854290] (-) TimerEvent: {} -[1.960981] (-) TimerEvent: {} -[2.171452] (-) TimerEvent: {} -[2.280822] (-) TimerEvent: {} -[2.411794] (WRover_Mock) Command: {'cmd': ['/usr/bin/python3', '-W', 'ignore:setup.py install is deprecated', 'setup.py', 'egg_info', '--egg-base', '../../build/WRover_Mock', 'build', '--build-base', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build', 'install', '--record', '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log', '--single-version-externally-managed', 'install_data'], 'cwd': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'env': {'LESSOPEN': '| /usr/bin/lesspipe %s', 'USER': 'balabalu', 'XDG_SESSION_TYPE': 'wayland', 'SHLVL': '1', 'LD_LIBRARY_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd/lib:/home/balabalu/ros2_jazzy/install/mcap_vendor/lib:/home/balabalu/ros2_jazzy/install/rviz_default_plugins/lib:/home/balabalu/ros2_jazzy/install/rviz_common/lib:/home/balabalu/ros2_jazzy/install/rosbag2_transport/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib:/home/balabalu/ros2_jazzy/install/rosbag2_compression/lib:/home/balabalu/ros2_jazzy/install/rosbag2_cpp/lib:/home/balabalu/ros2_jazzy/install/rosbag2_storage/lib:/home/balabalu/ros2_jazzy/install/camera_info_manager/lib:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers/lib:/home/balabalu/ros2_jazzy/install/interactive_markers/lib:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib:/home/balabalu/ros2_jazzy/install/robot_state_publisher/lib:/home/balabalu/ros2_jazzy/install/kdl_parser/lib:/home/balabalu/ros2_jazzy/install/urdf/lib:/home/balabalu/ros2_jazzy/install/urdfdom/lib:/home/balabalu/ros2_jazzy/install/turtlesim/lib:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_ros/lib:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl/lib:/home/balabalu/ros2_jazzy/install/laser_geometry/lib:/home/balabalu/ros2_jazzy/install/tf2/lib:/home/balabalu/ros2_jazzy/install/test_msgs/lib:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib:/home/balabalu/ros2_jazzy/install/std_srvs/lib:/home/balabalu/ros2_jazzy/install/shape_msgs/lib:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp/lib:/home/balabalu/ros2_jazzy/install/point_cloud_transport/lib:/home/balabalu/ros2_jazzy/install/map_msgs/lib:/home/balabalu/ros2_jazzy/install/image_transport/lib:/home/balabalu/ros2_jazzy/install/image_tools/lib:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib:/home/balabalu/ros2_jazzy/install/nav_msgs/lib:/home/balabalu/ros2_jazzy/install/message_filters/lib:/home/balabalu/ros2_jazzy/install/logging_demo/lib:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber/lib:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native/lib:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp/lib:/home/balabalu/ros2_jazzy/install/composition/lib:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib:/home/balabalu/ros2_jazzy/install/std_msgs/lib:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp/lib:/home/balabalu/ros2_jazzy/install/rclcpp_components/lib:/home/balabalu/ros2_jazzy/install/rclcpp_action/lib:/home/balabalu/ros2_jazzy/install/rclcpp/lib:/home/balabalu/ros2_jazzy/install/libstatistics_collector/lib:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib:/home/balabalu/ros2_jazzy/install/rclpy/lib:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_lifecycle/lib:/home/balabalu/ros2_jazzy/install/rcl_action/lib:/home/balabalu/ros2_jazzy/install/rcl/lib:/home/balabalu/ros2_jazzy/install/rmw_implementation/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp/lib:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib:/home/balabalu/ros2_jazzy/install/example_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib:/home/balabalu/ros2_jazzy/install/action_msgs/lib:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib:/home/balabalu/ros2_jazzy/install/service_msgs/lib:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib:/home/balabalu/ros2_jazzy/install/tracetools/lib:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog/lib:/home/balabalu/ros2_jazzy/install/rviz_rendering/lib:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor/opt/rviz_ogre_vendor/lib:/home/balabalu/ros2_jazzy/install/rttest/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps/lib:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser/lib:/home/balabalu/ros2_jazzy/install/rmw/lib:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport/lib:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c/lib:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib:/home/balabalu/ros2_jazzy/install/resource_retriever/lib:/home/balabalu/ros2_jazzy/install/class_loader/lib:/home/balabalu/ros2_jazzy/install/rcpputils/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_noop/lib:/home/balabalu/ros2_jazzy/install/rcl_logging_interface/lib:/home/balabalu/ros2_jazzy/install/rcutils/lib:/home/balabalu/ros2_jazzy/install/performance_test_fixture/lib:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib:/home/balabalu/ros2_jazzy/install/mimick_vendor/opt/mimick_vendor/lib:/home/balabalu/ros2_jazzy/install/keyboard_handler/lib:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib:/home/balabalu/ros2_jazzy/install/cyclonedds/lib:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor/lib:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor/lib:/home/balabalu/ros2_jazzy/install/fastrtps/lib:/home/balabalu/ros2_jazzy/install/fastcdr/lib:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib:/home/balabalu/ros2_jazzy/install/ament_index_cpp/lib', 'HOME': '/home/balabalu', 'OLDPWD': '/home/balabalu/workspace', 'DESKTOP_SESSION': 'ubuntu', 'ROS_PYTHON_VERSION': '3', 'GNOME_SHELL_SESSION_MODE': 'ubuntu', 'GTK_MODULES': 'gail:atk-bridge', 'SYSTEMD_EXEC_PID': '2222', 'GSM_SKIP_SSH_AGENT_WORKAROUND': 'true', 'DBUS_SESSION_BUS_ADDRESS': 'unix:path=/run/user/1000/bus', 'COLORTERM': 'truecolor', 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring', '_colcon_cd_root': '/opt/ros/jazzy/', 'DEBUGINFOD_URLS': 'https://debuginfod.ubuntu.com', 'IM_CONFIG_PHASE': '1', 'WAYLAND_DISPLAY': 'wayland-0', 'COLCON_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install', 'ROS_DISTRO': 'jazzy', 'LOGNAME': 'balabalu', '_': '/usr/bin/colcon', 'ROS_VERSION': '2', 'PKG_CONFIG_PATH': '/home/balabalu/ros2_jazzy/install/urdfdom/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/urdfdom_headers/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/test_osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/cyclonedds/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_posh/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gmock_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/gtest_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor/lib/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/x86_64-linux-gnu/pkgconfig:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/lib/pkgconfig', 'MEMORY_PRESSURE_WATCH': '/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/session.slice/org.gnome.SettingsDaemon.MediaKeys.service/memory.pressure', 'XDG_SESSION_CLASS': 'user', 'USERNAME': 'balabalu', 'TERM': 'xterm-256color', 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated', 'PATH': '/home/balabalu/ros2_jazzy/install/rviz2/bin:/home/balabalu/ros2_jazzy/install/rqt_bag/bin:/home/balabalu/ros2_jazzy/install/urdfdom/bin:/home/balabalu/ros2_jazzy/install/rqt_graph/bin:/home/balabalu/ros2_jazzy/install/rqt_gui/bin:/home/balabalu/ros2_jazzy/install/ros2cli/bin:/home/balabalu/ros2_jazzy/install/ament_uncrustify/bin:/home/balabalu/ros2_jazzy/install/rosidl_cli/bin:/home/balabalu/ros2_jazzy/install/launch_testing/bin:/home/balabalu/ros2_jazzy/install/iceoryx_introspection/bin:/home/balabalu/ros2_jazzy/install/cyclonedds/bin:/home/balabalu/ros2_jazzy/install/iceoryx_posh/bin:/home/balabalu/ros2_jazzy/install/fastrtps/bin:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor/bin:/home/balabalu/ros2_jazzy/install/ament_xmllint/bin:/home/balabalu/ros2_jazzy/install/ament_pyflakes/bin:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/bin:/home/balabalu/ros2_jazzy/install/ament_pep257/bin:/home/balabalu/ros2_jazzy/install/ament_pclint/bin:/home/balabalu/ros2_jazzy/install/ament_mypy/bin:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/bin:/home/balabalu/ros2_jazzy/install/ament_flake8/bin:/home/balabalu/ros2_jazzy/install/ament_copyright/bin:/home/balabalu/ros2_jazzy/install/ament_index_python/bin:/home/balabalu/ros2_jazzy/install/ament_cpplint/bin:/home/balabalu/ros2_jazzy/install/ament_cppcheck/bin:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/bin:/home/balabalu/ros2_jazzy/install/ament_clang_format/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin', 'SESSION_MANAGER': 'local/balabalu-VirtualBox:@/tmp/.ICE-unix/1966,unix/balabalu-VirtualBox:/tmp/.ICE-unix/1966', 'XDG_MENU_PREFIX': 'gnome-', 'GNOME_TERMINAL_SCREEN': '/org/gnome/Terminal/screen/5780614d_e55a_4f13_9cd1_fa0094eeaa47', 'GNOME_SETUP_DISPLAY': ':1', 'XDG_RUNTIME_DIR': '/run/user/1000', 'DISPLAY': ':0', 'LANG': 'en_US.UTF-8', 'XDG_CURRENT_DESKTOP': 'ubuntu:GNOME', 'XMODIFIERS': '@im=ibus', 'XDG_SESSION_DESKTOP': 'ubuntu', 'XAUTHORITY': '/run/user/1000/.mutter-Xwaylandauth.3FW6P2', 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:', 'GNOME_TERMINAL_SERVICE': ':1.114', 'SSH_AUTH_SOCK': '/run/user/1000/keyring/ssh', 'ROS_DOMAIN_ID': '25', 'AMENT_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rqt_bag_plugins:/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rqt_bag:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/launch_testing_examples:/home/balabalu/ros2_jazzy/install/ros2bag:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_launch:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/topic_monitor:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_tf2_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/rqt_plot:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/ros2doctor:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/ros2component:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/sros2:/home/balabalu/ros2_jazzy/install/rqt_topic:/home/balabalu/ros2_jazzy/install/rqt_srv:/home/balabalu/ros2_jazzy/install/rqt_shell:/home/balabalu/ros2_jazzy/install/rqt_service_caller:/home/balabalu/ros2_jazzy/install/rqt_reconfigure:/home/balabalu/ros2_jazzy/install/rqt_py_console:/home/balabalu/ros2_jazzy/install/rqt_publisher:/home/balabalu/ros2_jazzy/install/rqt_action:/home/balabalu/ros2_jazzy/install/rqt_msg:/home/balabalu/ros2_jazzy/install/rqt_console:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/rqt_graph:/home/balabalu/ros2_jazzy/install/rqt_gui_py:/home/balabalu/ros2_jazzy/install/rqt_gui:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/ros2trace:/home/balabalu/ros2_jazzy/install/ros2topic:/home/balabalu/ros2_jazzy/install/ros2test:/home/balabalu/ros2_jazzy/install/ros2param:/home/balabalu/ros2_jazzy/install/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2service:/home/balabalu/ros2_jazzy/install/ros2run:/home/balabalu/ros2_jazzy/install/ros2launch:/home/balabalu/ros2_jazzy/install/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2node:/home/balabalu/ros2_jazzy/install/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2interface:/home/balabalu/ros2_jazzy/install/ros2action:/home/balabalu/ros2_jazzy/install/ros2cli:/home/balabalu/ros2_jazzy/install/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_ros:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/action_tutorials_py:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rpyutils:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_testing:/home/balabalu/ros2_jazzy/install/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_xml:/home/balabalu/ros2_jazzy/install/launch:/home/balabalu/ros2_jazzy/install/osrf_pycommon:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/domain_coordinator:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_package:/home/balabalu/ros2_jazzy/install/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_lint:/home/balabalu/ros2_jazzy/install/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_cpp:/home/balabalu/ros2_jazzy/install/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_format', 'SHELL': '/bin/bash', 'QT_ACCESSIBILITY': '1', 'GDMSESSION': 'ubuntu', 'LESSCLOSE': '/usr/bin/lesspipe %s %s', 'ROS_AUTOMATIC_DISCOVERY_RANGE': 'SUBNET', 'QT_IM_MODULE': 'ibus', 'PWD': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'LC_ALL': 'en_US.UTF-8', 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg', 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop', 'PYTHONPATH': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag_plugins/src:/home/balabalu/ros2_jazzy/install/rqt_bag_plugins/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_bag/src:/home/balabalu/ros2_jazzy/install/rqt_bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosbag2_examples_py:/home/balabalu/ros2_jazzy/install/rosbag2_examples_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_examples:/home/balabalu/ros2_jazzy/install/launch_testing_examples/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2bag:/home/balabalu/ros2_jazzy/install/ros2bag/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/interactive_markers/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/visualization_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/turtlesim/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/trajectory_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_test:/home/balabalu/ros2_jazzy/install/tracetools_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_launch:/home/balabalu/ros2_jazzy/install/tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/topic_monitor:/home/balabalu/ros2_jazzy/install/topic_monitor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_tools:/home/balabalu/ros2_jazzy/install/tf2_tools/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_kdl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_tf2_py:/home/balabalu/ros2_jazzy/install/examples_tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tf2_ros_py:/home/balabalu/ros2_jazzy/install/tf2_ros_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/tf2_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/laser_geometry/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/test_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/stereo_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_srvs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/shape_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_pointcloud_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_pointcloud_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sensor_msgs_py:/home/balabalu/ros2_jazzy/install/sensor_msgs_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/quality_of_service_demo_py:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/map_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/sensor_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_plot/src:/home/balabalu/ros2_jazzy/install/rqt_plot/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2doctor:/home/balabalu/ros2_jazzy/install/ros2doctor/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/nav_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/message_filters/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/logging_demo/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/lifecycle_py:/home/balabalu/ros2_jazzy/install/lifecycle_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/diagnostic_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/geometry_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_subscriber/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_executors:/home/balabalu/ros2_jazzy/install/examples_rclpy_executors/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/demo_nodes_py:/home/balabalu/ros2_jazzy/install/demo_nodes_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/actionlib_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/std_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt:/home/balabalu/ros2_jazzy/install/rqt/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2component:/home/balabalu/ros2_jazzy/install/ros2component/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/statistics_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/sros2:/home/balabalu/ros2_jazzy/install/sros2/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_topic/src:/home/balabalu/ros2_jazzy/install/rqt_topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_srv/src:/home/balabalu/ros2_jazzy/install/rqt_srv/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_shell/src:/home/balabalu/ros2_jazzy/install/rqt_shell/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_service_caller/src:/home/balabalu/ros2_jazzy/install/rqt_service_caller/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_reconfigure/src:/home/balabalu/ros2_jazzy/install/rqt_reconfigure/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_py_console/src:/home/balabalu/ros2_jazzy/install/rqt_py_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_publisher/src:/home/balabalu/ros2_jazzy/install/rqt_publisher/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_action/src:/home/balabalu/ros2_jazzy/install/rqt_action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_msg/src:/home/balabalu/ros2_jazzy/install/rqt_msg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_console/src:/home/balabalu/ros2_jazzy/install/rqt_console/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rqt_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_graph/src:/home/balabalu/ros2_jazzy/install/rqt_graph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui_py/src:/home/balabalu/ros2_jazzy/install/rqt_gui_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rqt_gui/src:/home/balabalu/ros2_jazzy/install/rqt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2trace:/home/balabalu/ros2_jazzy/install/ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2topic:/home/balabalu/ros2_jazzy/install/ros2topic/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2test:/home/balabalu/ros2_jazzy/install/ros2test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2param:/home/balabalu/ros2_jazzy/install/ros2param/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2lifecycle:/home/balabalu/ros2_jazzy/install/ros2lifecycle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2service:/home/balabalu/ros2_jazzy/install/ros2service/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2run:/home/balabalu/ros2_jazzy/install/ros2run/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2launch:/home/balabalu/ros2_jazzy/install/ros2launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2pkg:/home/balabalu/ros2_jazzy/install/ros2pkg/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2node:/home/balabalu/ros2_jazzy/install/ros2node/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2multicast:/home/balabalu/ros2_jazzy/install/ros2multicast/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2interface:/home/balabalu/ros2_jazzy/install/ros2interface/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2action:/home/balabalu/ros2_jazzy/install/ros2action/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ros2cli:/home/balabalu/ros2_jazzy/install/ros2cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing_ros:/home/balabalu/ros2_jazzy/install/launch_testing_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_ros:/home/balabalu/ros2_jazzy/install/launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_server/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_minimal_action_client:/home/balabalu/ros2_jazzy/install/examples_rclpy_minimal_action_client/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/examples_rclpy_guard_conditions:/home/balabalu/ros2_jazzy/install/examples_rclpy_guard_conditions/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/action_tutorials_py:/home/balabalu/ros2_jazzy/install/action_tutorials_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rclpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosgraph_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rmw_dds_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/composition_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcl_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/pendulum_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lifecycle_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/example_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/action_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/type_description_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/service_msgs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/builtin_interfaces/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_uncrustify:/home/balabalu/ros2_jazzy/install/ament_uncrustify/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_trace:/home/balabalu/ros2_jazzy/install/tracetools_trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/tracetools_read:/home/balabalu/ros2_jazzy/install/tracetools_read/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_tracetools_launch:/home/balabalu/ros2_jazzy/install/test_tracetools_launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_ros2trace:/home/balabalu/ros2_jazzy/install/test_ros2trace/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/test_launch_ros:/home/balabalu/ros2_jazzy/install/test_launch_ros/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/lttngpy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rpyutils:/home/balabalu/ros2_jazzy/install/rpyutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_c/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_runtime_py:/home/balabalu/ros2_jazzy/install/rosidl_runtime_py/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_pycommon:/home/balabalu/ros2_jazzy/install/rosidl_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_parser/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosidl_adapter/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/rosidl_cli:/home/balabalu/ros2_jazzy/install/rosidl_cli/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/resource_retriever/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/rcutils/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_gui_py_common/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/qt_dotgraph/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/python_qt_binding/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_pytest:/home/balabalu/ros2_jazzy/install/launch_pytest/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_testing:/home/balabalu/ros2_jazzy/install/launch_testing/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_yaml:/home/balabalu/ros2_jazzy/install/launch_yaml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch_xml:/home/balabalu/ros2_jazzy/install/launch_xml/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/launch:/home/balabalu/ros2_jazzy/install/launch/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/osrf_pycommon:/home/balabalu/ros2_jazzy/install/osrf_pycommon/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/domain_coordinator:/home/balabalu/ros2_jazzy/install/domain_coordinator/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_xmllint:/home/balabalu/ros2_jazzy/install/ament_xmllint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pyflakes:/home/balabalu/ros2_jazzy/install/ament_pyflakes/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_pycodestyle/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pep257:/home/balabalu/ros2_jazzy/install/ament_pep257/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_pclint:/home/balabalu/ros2_jazzy/install/ament_pclint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/install/ament_cmake_test/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_package:/home/balabalu/ros2_jazzy/install/ament_package/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_mypy:/home/balabalu/ros2_jazzy/install/ament_mypy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_lint_cmake/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_flake8:/home/balabalu/ros2_jazzy/install/ament_flake8/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_copyright:/home/balabalu/ros2_jazzy/install/ament_copyright/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_lint:/home/balabalu/ros2_jazzy/install/ament_lint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_index_python:/home/balabalu/ros2_jazzy/install/ament_index_python/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cpplint:/home/balabalu/ros2_jazzy/install/ament_cpplint/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cppcheck/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_clang_tidy/lib/python3.12/site-packages:/home/balabalu/ros2_jazzy/build/ament_clang_format:/home/balabalu/ros2_jazzy/install/ament_clang_format/lib/python3.12/site-packages', 'COLCON': '1', 'MEMORY_PRESSURE_WRITE': 'c29tZSAyMDAwMDAgMjAwMDAwMAA=', 'VTE_VERSION': '7600', 'CMAKE_PREFIX_PATH': '/home/balabalu/ros2_jazzy/install/rosbag2:/home/balabalu/ros2_jazzy/install/rosbag2_storage_default_plugins:/home/balabalu/ros2_jazzy/install/rosbag2_storage_mcap:/home/balabalu/ros2_jazzy/install/rosbag2_compression_zstd:/home/balabalu/ros2_jazzy/install/mcap_vendor:/home/balabalu/ros2_jazzy/install/zstd_vendor:/home/balabalu/ros2_jazzy/install/rviz_visual_testing_framework:/home/balabalu/ros2_jazzy/install/rviz2:/home/balabalu/ros2_jazzy/install/rviz_default_plugins:/home/balabalu/ros2_jazzy/install/rviz_common:/home/balabalu/ros2_jazzy/install/rosbag2_py:/home/balabalu/ros2_jazzy/install/rosbag2_transport:/home/balabalu/ros2_jazzy/install/rosbag2_storage_sqlite3:/home/balabalu/ros2_jazzy/install/rosbag2_examples_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_compression:/home/balabalu/ros2_jazzy/install/rosbag2_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_storage:/home/balabalu/ros2_jazzy/install/image_common:/home/balabalu/ros2_jazzy/install/camera_info_manager:/home/balabalu/ros2_jazzy/install/camera_calibration_parsers:/home/balabalu/ros2_jazzy/install/yaml_cpp_vendor:/home/balabalu/ros2_jazzy/install/interactive_markers:/home/balabalu/ros2_jazzy/install/common_interfaces:/home/balabalu/ros2_jazzy/install/visualization_msgs:/home/balabalu/ros2_jazzy/install/dummy_robot_bringup:/home/balabalu/ros2_jazzy/install/robot_state_publisher:/home/balabalu/ros2_jazzy/install/kdl_parser:/home/balabalu/ros2_jazzy/install/urdf:/home/balabalu/ros2_jazzy/install/urdfdom:/home/balabalu/ros2_jazzy/install/urdf_parser_plugin:/home/balabalu/ros2_jazzy/install/urdfdom_headers:/home/balabalu/ros2_jazzy/install/turtlesim:/home/balabalu/ros2_jazzy/install/trajectory_msgs:/home/balabalu/ros2_jazzy/install/topic_statistics_demo:/home/balabalu/ros2_jazzy/install/pendulum_control:/home/balabalu/ros2_jazzy/install/tlsf_cpp:/home/balabalu/ros2_jazzy/install/geometry2:/home/balabalu/ros2_jazzy/install/tf2_sensor_msgs:/home/balabalu/ros2_jazzy/install/test_tf2:/home/balabalu/ros2_jazzy/install/tf2_kdl:/home/balabalu/ros2_jazzy/install/tf2_geometry_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen:/home/balabalu/ros2_jazzy/install/tf2_bullet:/home/balabalu/ros2_jazzy/install/tf2_ros:/home/balabalu/ros2_jazzy/install/tf2_py:/home/balabalu/ros2_jazzy/install/tf2_msgs:/home/balabalu/ros2_jazzy/install/tf2_eigen_kdl:/home/balabalu/ros2_jazzy/install/laser_geometry:/home/balabalu/ros2_jazzy/install/tf2:/home/balabalu/ros2_jazzy/install/test_tracetools:/home/balabalu/ros2_jazzy/install/test_msgs:/home/balabalu/ros2_jazzy/install/test_communication:/home/balabalu/ros2_jazzy/install/stereo_msgs:/home/balabalu/ros2_jazzy/install/std_srvs:/home/balabalu/ros2_jazzy/install/shape_msgs:/home/balabalu/ros2_jazzy/install/quality_of_service_demo_cpp:/home/balabalu/ros2_jazzy/install/point_cloud_transport_py:/home/balabalu/ros2_jazzy/install/point_cloud_transport:/home/balabalu/ros2_jazzy/install/map_msgs:/home/balabalu/ros2_jazzy/install/intra_process_demo:/home/balabalu/ros2_jazzy/install/image_transport:/home/balabalu/ros2_jazzy/install/image_tools:/home/balabalu/ros2_jazzy/install/dummy_sensors:/home/balabalu/ros2_jazzy/install/sensor_msgs:/home/balabalu/ros2_jazzy/install/ros2cli_common_extensions:/home/balabalu/ros2_jazzy/install/dummy_map_server:/home/balabalu/ros2_jazzy/install/nav_msgs:/home/balabalu/ros2_jazzy/install/message_filters:/home/balabalu/ros2_jazzy/install/logging_demo:/home/balabalu/ros2_jazzy/install/lifecycle:/home/balabalu/ros2_jazzy/install/diagnostic_msgs:/home/balabalu/ros2_jazzy/install/geometry_msgs:/home/balabalu/ros2_jazzy/install/examples_rclcpp_wait_set:/home/balabalu/ros2_jazzy/install/examples_rclcpp_multithreaded_executor:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_subscriber:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_publisher:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_composition:/home/balabalu/ros2_jazzy/install/examples_rclcpp_cbg_executor:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp_native:/home/balabalu/ros2_jazzy/install/demo_nodes_cpp:/home/balabalu/ros2_jazzy/install/composition:/home/balabalu/ros2_jazzy/install/actionlib_msgs:/home/balabalu/ros2_jazzy/install/std_msgs:/home/balabalu/ros2_jazzy/install/rqt_gui_cpp:/home/balabalu/ros2_jazzy/install/rosbag2_test_common:/home/balabalu/ros2_jazzy/install/ros2lifecycle_test_fixtures:/home/balabalu/ros2_jazzy/install/rclcpp_lifecycle:/home/balabalu/ros2_jazzy/install/action_tutorials_cpp:/home/balabalu/ros2_jazzy/install/rclcpp_components:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_server:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_action_client:/home/balabalu/ros2_jazzy/install/rclcpp_action:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_timer:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_service:/home/balabalu/ros2_jazzy/install/examples_rclcpp_minimal_client:/home/balabalu/ros2_jazzy/install/examples_rclcpp_async_client:/home/balabalu/ros2_jazzy/install/rclcpp:/home/balabalu/ros2_jazzy/install/libstatistics_collector:/home/balabalu/ros2_jazzy/install/statistics_msgs:/home/balabalu/ros2_jazzy/install/sros2_cmake:/home/balabalu/ros2_jazzy/install/rqt_py_common:/home/balabalu/ros2_jazzy/install/ros_testing:/home/balabalu/ros2_jazzy/install/rclpy:/home/balabalu/ros2_jazzy/install/rosgraph_msgs:/home/balabalu/ros2_jazzy/install/rosbag2_interfaces:/home/balabalu/ros2_jazzy/install/ros2cli_test_interfaces:/home/balabalu/ros2_jazzy/install/rcl_lifecycle:/home/balabalu/ros2_jazzy/install/rcl_action:/home/balabalu/ros2_jazzy/install/rcl:/home/balabalu/ros2_jazzy/install/rmw_implementation:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_dynamic_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rmw_fastrtps_shared_cpp:/home/balabalu/ros2_jazzy/install/rmw_cyclonedds_cpp:/home/balabalu/ros2_jazzy/install/rmw_connextddsmicro:/home/balabalu/ros2_jazzy/install/rmw_connextdds:/home/balabalu/ros2_jazzy/install/rmw_connextdds_common:/home/balabalu/ros2_jazzy/install/rmw_dds_common:/home/balabalu/ros2_jazzy/install/composition_interfaces:/home/balabalu/ros2_jazzy/install/rcl_interfaces:/home/balabalu/ros2_jazzy/install/pendulum_msgs:/home/balabalu/ros2_jazzy/install/lifecycle_msgs:/home/balabalu/ros2_jazzy/install/example_interfaces:/home/balabalu/ros2_jazzy/install/action_tutorials_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_default_runtime:/home/balabalu/ros2_jazzy/install/rosidl_default_generators:/home/balabalu/ros2_jazzy/install/action_msgs:/home/balabalu/ros2_jazzy/install/unique_identifier_msgs:/home/balabalu/ros2_jazzy/install/type_description_interfaces:/home/balabalu/ros2_jazzy/install/service_msgs:/home/balabalu/ros2_jazzy/install/builtin_interfaces:/home/balabalu/ros2_jazzy/install/rosidl_core_runtime:/home/balabalu/ros2_jazzy/install/rosidl_core_generators:/home/balabalu/ros2_jazzy/install/rosidl_generator_py:/home/balabalu/ros2_jazzy/install/ament_lint_common:/home/balabalu/ros2_jazzy/install/ament_cmake_uncrustify:/home/balabalu/ros2_jazzy/install/uncrustify_vendor:/home/balabalu/ros2_jazzy/install/tracetools:/home/balabalu/ros2_jazzy/install/tlsf:/home/balabalu/ros2_jazzy/install/qt_gui_core:/home/balabalu/ros2_jazzy/install/qt_gui_cpp:/home/balabalu/ros2_jazzy/install/pluginlib:/home/balabalu/ros2_jazzy/install/tinyxml2_vendor:/home/balabalu/ros2_jazzy/install/test_security:/home/balabalu/ros2_jazzy/install/test_rmw_implementation:/home/balabalu/ros2_jazzy/install/test_rclcpp:/home/balabalu/ros2_jazzy/install/test_quality_of_service:/home/balabalu/ros2_jazzy/install/test_launch_testing:/home/balabalu/ros2_jazzy/install/test_interface_files:/home/balabalu/ros2_jazzy/install/test_cli_remapping:/home/balabalu/ros2_jazzy/install/test_cli:/home/balabalu/ros2_jazzy/install/qt_gui_app:/home/balabalu/ros2_jazzy/install/qt_gui:/home/balabalu/ros2_jazzy/install/tango_icons_vendor:/home/balabalu/ros2_jazzy/install/sqlite3_vendor:/home/balabalu/ros2_jazzy/install/rcl_logging_spdlog:/home/balabalu/ros2_jazzy/install/spdlog_vendor:/home/balabalu/ros2_jazzy/install/shared_queues_vendor:/home/balabalu/ros2_jazzy/install/rviz_rendering_tests:/home/balabalu/ros2_jazzy/install/rviz_rendering:/home/balabalu/ros2_jazzy/install/rviz_ogre_vendor:/home/balabalu/ros2_jazzy/install/rviz_assimp_vendor:/home/balabalu/ros2_jazzy/install/rttest:/home/balabalu/ros2_jazzy/install/rti_connext_dds_cmake_module:/home/balabalu/ros2_jazzy/install/lttngpy:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_tests:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_cpp:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_introspection_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_fastrtps_cpp:/home/balabalu/ros2_jazzy/install/rosidl_generator_cpp:/home/balabalu/ros2_jazzy/install/rosidl_runtime_cpp:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport_fastrtps:/home/balabalu/ros2_jazzy/install/rcl_yaml_param_parser:/home/balabalu/ros2_jazzy/install/rmw:/home/balabalu/ros2_jazzy/install/rosidl_dynamic_typesupport:/home/balabalu/ros2_jazzy/install/rosidl_runtime_c:/home/balabalu/ros2_jazzy/install/rosidl_generator_c:/home/balabalu/ros2_jazzy/install/rosidl_typesupport_interface:/home/balabalu/ros2_jazzy/install/rosidl_generator_dds_idl:/home/balabalu/ros2_jazzy/install/rosidl_cmake:/home/balabalu/ros2_jazzy/install/rosidl_generator_type_description:/home/balabalu/ros2_jazzy/install/rosidl_parser:/home/balabalu/ros2_jazzy/install/rosidl_generator_tests:/home/balabalu/ros2_jazzy/install/rosidl_adapter:/home/balabalu/ros2_jazzy/install/rosbag2_tests:/home/balabalu/ros2_jazzy/install/rosbag2_test_msgdefs:/home/balabalu/ros2_jazzy/install/ros_environment:/home/balabalu/ros2_jazzy/install/rmw_implementation_cmake:/home/balabalu/ros2_jazzy/install/resource_retriever:/home/balabalu/ros2_jazzy/install/class_loader:/home/balabalu/ros2_jazzy/install/rcpputils:/home/balabalu/ros2_jazzy/install/rcl_logging_noop:/home/balabalu/ros2_jazzy/install/rcl_logging_interface:/home/balabalu/ros2_jazzy/install/rcutils:/home/balabalu/ros2_jazzy/install/qt_gui_py_common:/home/balabalu/ros2_jazzy/install/qt_dotgraph:/home/balabalu/ros2_jazzy/install/python_qt_binding:/home/balabalu/ros2_jazzy/install/python_orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/launch_testing_ament_cmake:/home/balabalu/ros2_jazzy/install/python_cmake_module:/home/balabalu/ros2_jazzy/install/pybind11_vendor:/home/balabalu/ros2_jazzy/install/performance_test_fixture:/home/balabalu/ros2_jazzy/install/osrf_testing_tools_cpp:/home/balabalu/ros2_jazzy/install/orocos_kdl_vendor:/home/balabalu/ros2_jazzy/install/mimick_vendor:/home/balabalu/ros2_jazzy/install/libyaml_vendor:/home/balabalu/ros2_jazzy/install/liblz4_vendor:/home/balabalu/ros2_jazzy/install/libcurl_vendor:/home/balabalu/ros2_jazzy/install/keyboard_handler:/home/balabalu/ros2_jazzy/install/iceoryx_introspection:/home/balabalu/ros2_jazzy/install/cyclonedds:/home/balabalu/ros2_jazzy/install/iceoryx_posh:/home/balabalu/ros2_jazzy/install/iceoryx_hoofs:/home/balabalu/ros2_jazzy/install/iceoryx_binding_c:/home/balabalu/ros2_jazzy/install/gz_math_vendor/opt/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_math_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor/opt/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_utils_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor/opt/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/gz_cmake_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_ros:/home/balabalu/ros2_jazzy/install/ament_cmake_auto:/home/balabalu/ros2_jazzy/install/ament_cmake_gmock:/home/balabalu/ros2_jazzy/install/gmock_vendor:/home/balabalu/ros2_jazzy/install/fastrtps:/home/balabalu/ros2_jazzy/install/fastcdr:/home/balabalu/ros2_jazzy/install/ament_cmake_gtest:/home/balabalu/ros2_jazzy/install/gtest_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_google_benchmark:/home/balabalu/ros2_jazzy/install/google_benchmark_vendor:/home/balabalu/ros2_jazzy/install/foonathan_memory_vendor:/home/balabalu/ros2_jazzy/install/fastrtps_cmake_module:/home/balabalu/ros2_jazzy/install/eigen3_cmake_module:/home/balabalu/ros2_jazzy/install/console_bridge_vendor:/home/balabalu/ros2_jazzy/install/ament_cmake_xmllint:/home/balabalu/ros2_jazzy/install/ament_cmake_pyflakes:/home/balabalu/ros2_jazzy/install/ament_cmake_pycodestyle:/home/balabalu/ros2_jazzy/install/ament_cmake_pep257:/home/balabalu/ros2_jazzy/install/ament_cmake_pclint:/home/balabalu/ros2_jazzy/install/ament_lint_auto:/home/balabalu/ros2_jazzy/install/ament_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_version:/home/balabalu/ros2_jazzy/install/ament_cmake_vendor_package:/home/balabalu/ros2_jazzy/install/ament_cmake_pytest:/home/balabalu/ros2_jazzy/install/ament_cmake_mypy:/home/balabalu/ros2_jazzy/install/ament_cmake_lint_cmake:/home/balabalu/ros2_jazzy/install/ament_cmake_flake8:/home/balabalu/ros2_jazzy/install/ament_cmake_cpplint:/home/balabalu/ros2_jazzy/install/ament_cmake_cppcheck:/home/balabalu/ros2_jazzy/install/ament_cmake_copyright:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_tidy:/home/balabalu/ros2_jazzy/install/ament_cmake_clang_format:/home/balabalu/ros2_jazzy/install/ament_cmake_test:/home/balabalu/ros2_jazzy/install/ament_cmake_target_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_python:/home/balabalu/ros2_jazzy/install/ament_cmake_export_dependencies:/home/balabalu/ros2_jazzy/install/ament_cmake_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_gen_version_h:/home/balabalu/ros2_jazzy/install/ament_cmake_export_targets:/home/balabalu/ros2_jazzy/install/ament_cmake_export_link_flags:/home/balabalu/ros2_jazzy/install/ament_cmake_export_interfaces:/home/balabalu/ros2_jazzy/install/ament_cmake_export_libraries:/home/balabalu/ros2_jazzy/install/ament_cmake_export_include_directories:/home/balabalu/ros2_jazzy/install/ament_cmake_export_definitions:/home/balabalu/ros2_jazzy/install/ament_cmake_core:/home/balabalu/ros2_jazzy/install/ament_index_cpp'}, 'shell': False} -[2.422837] (-) TimerEvent: {} -[2.562496] (-) TimerEvent: {} -[2.847889] (-) TimerEvent: {} -[2.953748] (-) TimerEvent: {} -[3.073636] (-) TimerEvent: {} -[3.167996] (WRover_Mock) StdoutLine: {'line': b'running egg_info\n'} -[3.178872] (-) TimerEvent: {} -[3.229703] (WRover_Mock) StdoutLine: {'line': b'writing ../../build/WRover_Mock/WRover_Mock.egg-info/PKG-INFO\n'} -[3.230028] (WRover_Mock) StdoutLine: {'line': b'writing dependency_links to ../../build/WRover_Mock/WRover_Mock.egg-info/dependency_links.txt\n'} -[3.230280] (WRover_Mock) StdoutLine: {'line': b'writing entry points to ../../build/WRover_Mock/WRover_Mock.egg-info/entry_points.txt\n'} -[3.232017] (WRover_Mock) StdoutLine: {'line': b'writing requirements to ../../build/WRover_Mock/WRover_Mock.egg-info/requires.txt\n'} -[3.232168] (WRover_Mock) StdoutLine: {'line': b'writing top-level names to ../../build/WRover_Mock/WRover_Mock.egg-info/top_level.txt\n'} -[3.314426] (WRover_Mock) StdoutLine: {'line': b"reading manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.314712] (-) TimerEvent: {} -[3.314805] (WRover_Mock) StdoutLine: {'line': b"adding license file 'LICENSE'\n"} -[3.318012] (WRover_Mock) StdoutLine: {'line': b"writing manifest file '../../build/WRover_Mock/WRover_Mock.egg-info/SOURCES.txt'\n"} -[3.320990] (WRover_Mock) StdoutLine: {'line': b'running build\n'} -[3.321236] (WRover_Mock) StdoutLine: {'line': b'running build_py\n'} -[3.321752] (WRover_Mock) StdoutLine: {'line': b'copying WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock\n'} -[3.322276] (WRover_Mock) StdoutLine: {'line': b'running install\n'} -[3.334314] (WRover_Mock) StdoutLine: {'line': b'running install_lib\n'} -[3.389188] (WRover_Mock) StdoutLine: {'line': b'copying /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/Robot.py -> /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock\n'} -[3.397850] (WRover_Mock) StdoutLine: {'line': b'byte-compiling /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock/Robot.py to Robot.cpython-312.pyc\n'} -[3.400433] (WRover_Mock) StdoutLine: {'line': b'running install_data\n'} -[3.400898] (WRover_Mock) StdoutLine: {'line': b'running install_egg_info\n'} -[3.452275] (-) TimerEvent: {} -[3.456941] (WRover_Mock) StdoutLine: {'line': b"removing '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info' (and everything under it)\n"} -[3.457727] (WRover_Mock) StdoutLine: {'line': b'Copying ../../build/WRover_Mock/WRover_Mock.egg-info to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages/WRover_Mock-0.0.0-py3.12.egg-info\n'} -[3.459855] (WRover_Mock) StdoutLine: {'line': b'running install_scripts\n'} -[3.564383] (-) TimerEvent: {} -[3.667066] (-) TimerEvent: {} -[3.766356] (WRover_Mock) StdoutLine: {'line': b'Installing Robot script to /home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/WRover_Mock\n'} -[3.768999] (-) TimerEvent: {} -[3.771457] (WRover_Mock) StdoutLine: {'line': b"writing list of installed files to '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log'\n"} -[3.843072] (WRover_Mock) CommandEnded: {'returncode': 0} -[3.870108] (WRover_Mock) JobEnded: {'identifier': 'WRover_Mock', 'rc': 0} -[3.873043] (-) TimerEvent: {} -[3.873215] (-) EventReactorShutdown: {} diff --git a/WRPlayTemp/log/build_2024-07-03_21-23-15/logger_all.log b/WRPlayTemp/log/build_2024-07-03_21-23-15/logger_all.log deleted file mode 100644 index 36edfac..0000000 --- a/WRPlayTemp/log/build_2024-07-03_21-23-15/logger_all.log +++ /dev/null @@ -1,126 +0,0 @@ -[0.299s] DEBUG:colcon:Command line arguments: ['/usr/bin/colcon', 'build'] -[0.299s] DEBUG:colcon:Parsed command line arguments: Namespace(log_base=None, log_level=None, verb_name='build', build_base='build', install_base='install', merge_install=False, symlink_install=False, test_result_base=None, continue_on_error=False, executor='parallel', parallel_workers=5, event_handlers=None, ignore_user_meta=False, metas=['./colcon.meta'], base_paths=['.'], packages_ignore=None, packages_ignore_regex=None, paths=None, packages_up_to=None, packages_up_to_regex=None, packages_above=None, packages_above_and_dependencies=None, packages_above_depth=None, packages_select_by_dep=None, packages_skip_by_dep=None, packages_skip_up_to=None, packages_select_build_failed=False, packages_skip_build_finished=False, packages_select_test_failures=False, packages_skip_test_passed=False, packages_select=None, packages_skip=None, packages_select_regex=None, packages_skip_regex=None, packages_start=None, packages_end=None, allow_overriding=[], cmake_args=None, cmake_target=None, cmake_target_skip_unavailable=False, cmake_clean_cache=False, cmake_clean_first=False, cmake_force_configure=False, ament_cmake_args=None, catkin_cmake_args=None, catkin_skip_building_tests=False, mixin_files=None, mixin=None, verb_parser=, verb_extension=, main=>, mixin_verb=('build',)) -[0.405s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) check parameters -[0.405s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) check parameters -[0.406s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) check parameters -[0.406s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) check parameters -[0.406s] Level 1:colcon.colcon_core.package_discovery:discover_packages(colcon_meta) discover -[0.406s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) discover -[0.406s] INFO:colcon.colcon_core.package_discovery:Crawling recursively for packages in '/home/balabalu/workspace/WRPlayTemp' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ignore', 'ignore_ament_install'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ignore_ament_install' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_pkg'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_pkg' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['colcon_meta'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'colcon_meta' -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['ros'] -[0.406s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'ros' -[0.466s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['cmake', 'python'] -[0.466s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'cmake' -[0.466s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python' -[0.466s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extensions ['python_setup_py'] -[0.466s] Level 1:colcon.colcon_core.package_identification:_identify(.) by extension 'python_setup_py' -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extensions ['ignore', 'ignore_ament_install'] -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(build) by extension 'ignore' -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(build) ignored -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extensions ['ignore', 'ignore_ament_install'] -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(install) by extension 'ignore' -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(install) ignored -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extensions ['ignore', 'ignore_ament_install'] -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(log) by extension 'ignore' -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(log) ignored -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ignore', 'ignore_ament_install'] -[0.467s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ignore_ament_install' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_pkg'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_pkg' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['colcon_meta'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'colcon_meta' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['ros'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'ros' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['cmake', 'python'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'cmake' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extensions ['python_setup_py'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src) by extension 'python_setup_py' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ignore', 'ignore_ament_install'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ignore_ament_install' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_pkg'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_pkg' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['colcon_meta'] -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'colcon_meta' -[0.468s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extensions ['ros'] -[0.469s] Level 1:colcon.colcon_core.package_identification:_identify(src/WRover_Mock) by extension 'ros' -[0.474s] DEBUG:colcon.colcon_core.package_identification:Package 'src/WRover_Mock' with type 'ros.ament_python' and name 'WRover_Mock' -[0.474s] Level 1:colcon.colcon_core.package_discovery:discover_packages(recursive) using defaults -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) discover -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(ignore) using defaults -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) discover -[0.475s] Level 1:colcon.colcon_core.package_discovery:discover_packages(path) using defaults -[0.550s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) check parameters -[0.551s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) discover -[0.593s] DEBUG:colcon.colcon_installed_package_information.package_discovery:Found 363 installed packages in /home/balabalu/ros2_jazzy/install -[0.622s] Level 1:colcon.colcon_core.package_discovery:discover_packages(prefix_path) using defaults -[0.696s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_args' from command line to 'None' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target' from command line to 'None' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_target_skip_unavailable' from command line to 'False' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_cache' from command line to 'False' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_clean_first' from command line to 'False' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'cmake_force_configure' from command line to 'False' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'ament_cmake_args' from command line to 'None' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_cmake_args' from command line to 'None' -[0.697s] Level 5:colcon.colcon_core.verb:set package 'WRover_Mock' build argument 'catkin_skip_building_tests' from command line to 'False' -[0.697s] DEBUG:colcon.colcon_core.verb:Building package 'WRover_Mock' with the following arguments: {'ament_cmake_args': None, 'build_base': '/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock', 'catkin_cmake_args': None, 'catkin_skip_building_tests': False, 'cmake_args': None, 'cmake_clean_cache': False, 'cmake_clean_first': False, 'cmake_force_configure': False, 'cmake_target': None, 'cmake_target_skip_unavailable': False, 'install_base': '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock', 'merge_install': False, 'path': '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock', 'symlink_install': False, 'test_result_base': None} -[0.697s] INFO:colcon.colcon_core.executor:Executing jobs using 'parallel' executor -[0.699s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete -[0.699s] INFO:colcon.colcon_ros.task.ament_python.build:Building ROS package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' with build type 'ament_python' -[0.699s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'ament_prefix_path') -[0.707s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_core.shell.bat': Not used on non-Windows systems -[0.707s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.ps1' -[0.709s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.dsv' -[0.712s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/ament_prefix_path.sh' -[0.719s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[0.719s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[1.524s] INFO:colcon.colcon_core.task.python.build:Building Python package in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' -[1.525s] INFO:colcon.colcon_core.shell:Skip shell extension 'powershell' for command environment: Not usable outside of PowerShell -[1.525s] DEBUG:colcon.colcon_core.shell:Skip shell extension 'dsv' for command environment -[3.120s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoking command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.543s] DEBUG:colcon.colcon_core.event_handler.log_command:Invoked command in '/home/balabalu/workspace/WRPlayTemp/src/WRover_Mock' returned '0': DEBUGINFOD_URLS=https://debuginfod.ubuntu.com PYTHONPATH=/home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/prefix_override:/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages:${PYTHONPATH} /usr/bin/python3 -W ignore:setup.py install is deprecated setup.py egg_info --egg-base ../../build/WRover_Mock build --build-base /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/build install --record /home/balabalu/workspace/WRPlayTemp/build/WRover_Mock/install.log --single-version-externally-managed install_data -[4.551s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake module files -[4.551s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock' for CMake config files -[4.553s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib' -[4.553s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.553s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/pkgconfig/WRover_Mock.pc' -[4.554s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/lib/python3.12/site-packages' -[4.555s] Level 1:colcon.colcon_core.shell:create_environment_hook('WRover_Mock', 'pythonpath') -[4.555s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.ps1' -[4.556s] INFO:colcon.colcon_core.shell:Creating environment descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.dsv' -[4.557s] INFO:colcon.colcon_core.shell:Creating environment hook '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/hook/pythonpath.sh' -[4.558s] Level 1:colcon.colcon_core.environment:checking '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/bin' -[4.558s] Level 1:colcon.colcon_core.environment:create_environment_scripts_only(WRover_Mock) -[4.559s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.ps1' -[4.560s] INFO:colcon.colcon_core.shell:Creating package descriptor '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.dsv' -[4.561s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.sh' -[4.563s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.bash' -[4.564s] INFO:colcon.colcon_core.shell:Creating package script '/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/WRover_Mock/package.zsh' -[4.566s] Level 1:colcon.colcon_core.environment:create_file_with_runtime_dependencies(/home/balabalu/workspace/WRPlayTemp/install/WRover_Mock/share/colcon-core/packages/WRover_Mock) -[4.568s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:closing loop -[4.569s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:loop closed -[4.570s] DEBUG:colcon.colcon_parallel_executor.executor.parallel:run_until_complete finished with '0' -[4.570s] DEBUG:colcon.colcon_core.event_reactor:joining thread -[4.595s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.terminal_notifier': Not used on non-Darwin systems -[4.596s] INFO:colcon.colcon_core.plugin_system:Skipping extension 'colcon_notification.desktop_notification.win32': Not used on non-Windows systems -[4.596s] INFO:colcon.colcon_notification.desktop_notification:Sending desktop notification using 'notify2' -[4.649s] DEBUG:colcon.colcon_core.event_reactor:joined thread -[4.649s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.ps1' -[4.652s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_ps1.py' -[4.654s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.ps1' -[4.682s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.sh' -[4.684s] INFO:colcon.colcon_core.shell:Creating prefix util module '/home/balabalu/workspace/WRPlayTemp/install/_local_setup_util_sh.py' -[4.685s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.sh' -[4.706s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.bash' -[4.706s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.bash' -[4.730s] INFO:colcon.colcon_core.shell:Creating prefix script '/home/balabalu/workspace/WRPlayTemp/install/local_setup.zsh' -[4.731s] INFO:colcon.colcon_core.shell:Creating prefix chain script '/home/balabalu/workspace/WRPlayTemp/install/setup.zsh' diff --git a/WRPlayTemp/log/latest b/WRPlayTemp/log/latest deleted file mode 120000 index b57d247..0000000 --- a/WRPlayTemp/log/latest +++ /dev/null @@ -1 +0,0 @@ -latest_build \ No newline at end of file diff --git a/WRPlayTemp/log/latest_build b/WRPlayTemp/log/latest_build deleted file mode 120000 index 7cd1268..0000000 --- a/WRPlayTemp/log/latest_build +++ /dev/null @@ -1 +0,0 @@ -build_2024-07-03_21-23-15 \ No newline at end of file diff --git a/WRPlayTemp/src/WRover_Mock/LICENSE b/WRPlayTemp/src/WRover_Mock/LICENSE deleted file mode 100644 index d645695..0000000 --- a/WRPlayTemp/src/WRover_Mock/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/WRPlayTemp/src/WRover_Mock/WRover_Mock/AbstractRobot.py b/WRPlayTemp/src/WRover_Mock/WRover_Mock/AbstractRobot.py deleted file mode 100644 index 22254cb..0000000 --- a/WRPlayTemp/src/WRover_Mock/WRover_Mock/AbstractRobot.py +++ /dev/null @@ -1,88 +0,0 @@ -print('hello world') - - -from ast import Num -import math -from tokenize import Number -from std_msgs.msg import Float64 - - -class Robot: - - def __init__(self, - wheelBase, - maxVelocity, - acceleration, - startX = 0.0, - startY = 0.0, - startTheta = 0.0 - ) -> None: - - self.wheelBase = wheelBase - self.maxVelocity = maxVelocity - self.acceleration = acceleration - - self.x = startX - self.y = startY - self.theta = startTheta - - self.velocity = 0.0 - self.dtheta = 0.0 - - self.leftWheel = 0.0 - self.rightWheel = 0.0 - self.dt = 0.05 - - self.leftDist = 0.0 - self.rightDist = 0.0 - - def coerceIn(self, val, bot, top) -> Number: return max(min(val, top), bot) - - def setLeft(self, left): - self.leftWheel = self.coerceIn(left, -1.0, 1.0) - def setRight(self, right): - self.rightWheel = self.coerceIn(right, -1.0, 1.0) - - def update(self): - targetVelocity = (self.leftWheel + self.rightWheel) / 2 * self.maxVelocity - dtheta = 0.0 - - if(self.rightWheel == -self.leftWheel): - dtheta = self.leftWheel * self.maxVelocity / self.wheelBase * self.dt - elif(self.leftWheel != self.rightWheel): - r = self.wheelBase * (self.leftWheel + self.rightWheel) / 2 / abs(self.leftWheel - self.rightWheel) - dist = targetVelocity * self.dt - h = math.sqrt(r*r - dist*dist/4) - dtheta = 2 * math.atan(dist/2/h) * (1 if self.leftWheel > self.rightWheel else -1) - - self.theta = (self.theta + dtheta) % (math.pi * 2) - - if self.acceleration > abs(targetVelocity - self.velocity): - self.velocity = targetVelocity - else: - self.velocity += self.acceleration if targetVelocity > self.velocity else -self.acceleration - - self.velocity = self.coerceIn(self.velocity, -self.maxVelocity, self.maxVelocity) - - self.x += math.sin(self.theta) * self.velocity * self.dt - self.y += math.cos(self.theta) * self.velocity * self.dt - - self.leftDist += self.velocity * self.dt - self.rightDist += self.velocity * self.dt - - def getLeftDistance(self) -> Float64: - msg = Float64() - msg.data = self.leftDist - return msg - def getRightDistance(self) -> Float64: - msg = Float64() - msg.data = self.rightDist - return msg - def getHeading(self) -> Float64: - msg = Float64() - msg.data = self.theta - return msg - def getHeadingInDegrees(self) -> Float64: - msg = Float64() - msg.data = self.theta / math.pi * 180 - return msg diff --git a/WRPlayTemp/src/WRover_Mock/WRover_Mock/Robot.py b/WRPlayTemp/src/WRover_Mock/WRover_Mock/Robot.py deleted file mode 100644 index c23ab6b..0000000 --- a/WRPlayTemp/src/WRover_Mock/WRover_Mock/Robot.py +++ /dev/null @@ -1,72 +0,0 @@ - -import rclpy, std_msgs, geometry_msgs -from rclpy.node import Node -from WRover_Mock.AbstractRobot import Robot -from geometry_msgs.msg import Pose2D -from std_msgs.msg import Float64 - - -class Rover(Node): - - def __init__(self): - super().__init__('rover') - - #setting up subscribers - self.left_subscriber = self.create_subscription( - Float64, - 'rover/cmd/left', - self.set_left, - 10) - self.right_subscriber = self.create_subscription( - Float64, - 'rover/cmd/right', - self.set_right, - 10) - - #Setting up Publishers - self.left_enc_publisher = self.create_publisher( Float64,'rover/enc/left', 10) - self.right_enc_publisher = self.create_publisher( Float64,'rover/enc/left', 10) - self.gyro_publisher = self.create_publisher( Float64, 'rover/gyro', 10) - self.pose_publisher = self.create_publisher(Pose2D,'rover/pose', 10) # top secret - do not subscribe! - - #setting up timer to publish.timer_call - timer_period = 1/hz # seconds (executes every .05 seconds if hz is 20) - self.timer = self.create_timer(timer_period, self.timer_callback) - - def timer_callback(self): - rover.update() - self.left_enc_publisher.publish((rover.getLeftDistance())) - self.right_enc_publisher.publish((rover.getRightDistance())) - self.gyro_publisher.publish((rover.getHeading())) - - pose = Pose2D() - pose.x = rover.x - pose.y = rover.y - pose.theta = rover.theta - self.pose_publisher.publish(pose) - - def set_left(self, msg): rover.setLeft(msg.data) - - def set_right(self, msg): rover.setRight(msg.data) - -def main(args = None): - rclpy.init(args=args) - - rover = Rover() - - rclpy.spin(rover) - - #Kill program after ending - rover.destroy_node() - rclpy.shutdown() - -hz = 20 -rover = Robot( - wheelBase = 50, - maxVelocity = 1000/hz, - acceleration = 10000, -) - - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/WRPlayTemp/src/WRover_Mock/WRover_Mock/__init__.py b/WRPlayTemp/src/WRover_Mock/WRover_Mock/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/src/WRover_Mock/package.xml b/WRPlayTemp/src/WRover_Mock/package.xml deleted file mode 100644 index c3e9124..0000000 --- a/WRPlayTemp/src/WRover_Mock/package.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - WRover_Mock - 0.0.0 - Sets up mock rover - Wisconsig Robotics - Apache-2.0 - - rclpy - std_msgs - geometry_msgs - - ament_copyright - ament_flake8 - ament_pep257 - python3-pytest - - - ament_python - - diff --git a/WRPlayTemp/src/WRover_Mock/resource/WRover_Mock b/WRPlayTemp/src/WRover_Mock/resource/WRover_Mock deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/src/WRover_Mock/setup.cfg b/WRPlayTemp/src/WRover_Mock/setup.cfg deleted file mode 100644 index 62e3688..0000000 --- a/WRPlayTemp/src/WRover_Mock/setup.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[develop] -script_dir=$base/lib/WRover_Mock -[install] -install_scripts=$base/lib/WRover_Mock diff --git a/WRPlayTemp/src/WRover_Mock/setup.py b/WRPlayTemp/src/WRover_Mock/setup.py deleted file mode 100644 index 3a2d649..0000000 --- a/WRPlayTemp/src/WRover_Mock/setup.py +++ /dev/null @@ -1,26 +0,0 @@ -from setuptools import find_packages, setup - -package_name = 'WRover_Mock' - -setup( - name=package_name, - version='0.0.0', - packages=find_packages(exclude=['test']), - data_files=[ - ('share/ament_index/resource_index/packages', - ['resource/' + package_name]), - ('share/' + package_name, ['package.xml']), - ], - install_requires=['setuptools'], - zip_safe=True, - maintainer='Wisconsin Robotics', - maintainer_email='wisconsinrobotics@cae.wisc.edu', - description='Sets up mock rover', - license='Apache-2.0', - tests_require=['pytest'], - entry_points={ - 'console_scripts': [ - 'Robot = WRover_Mock.Robot:main', - ], - }, -) diff --git a/WRPlayTemp/src/WRover_Mock/test/test_copyright.py b/WRPlayTemp/src/WRover_Mock/test/test_copyright.py deleted file mode 100644 index 97a3919..0000000 --- a/WRPlayTemp/src/WRover_Mock/test/test_copyright.py +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2015 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from ament_copyright.main import main -import pytest - - -# Remove the `skip` decorator once the source file(s) have a copyright header -@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.') -@pytest.mark.copyright -@pytest.mark.linter -def test_copyright(): - rc = main(argv=['.', 'test']) - assert rc == 0, 'Found errors' diff --git a/WRPlayTemp/src/WRover_Mock/test/test_pep257.py b/WRPlayTemp/src/WRover_Mock/test/test_pep257.py deleted file mode 100644 index b234a38..0000000 --- a/WRPlayTemp/src/WRover_Mock/test/test_pep257.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2015 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from ament_pep257.main import main -import pytest - - -@pytest.mark.linter -@pytest.mark.pep257 -def test_pep257(): - rc = main(argv=['.', 'test']) - assert rc == 0, 'Found code style errors / warnings' diff --git a/WRPlayTemp/src/robot_sim_gui/LICENSE b/WRPlayTemp/src/robot_sim_gui/LICENSE deleted file mode 100644 index d645695..0000000 --- a/WRPlayTemp/src/robot_sim_gui/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/Robot.py b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/Robot.py deleted file mode 100644 index 86595a9..0000000 --- a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/Robot.py +++ /dev/null @@ -1,76 +0,0 @@ -from tkinter import * -from PIL import Image, ImageTk -import math - -from typing import Tuple - -UPDATE_PERIOD = 10 # in ms - -class Robot: - def __init__(self, root:Tk, canvas:Canvas, resource_path: str, init_x:int, init_y:int): - self.root = root - self.canvas = canvas - self.canvas.update() - self.canvas_width = self.canvas.winfo_width() - self.canvas_height = self.canvas.winfo_height() - self.__resource_path = resource_path - - # Set initial robot position - self.x_pos = init_x - self.y_pos = init_y - self.angle = 0 - - # Initialize robot speed - self.forward_speed = 0 - self.turn_speed = 0 - - # Add robot image - self.image = Image.open(f'{self.__resource_path}/SmallTank.png') - self.tk_image = ImageTk.PhotoImage(self.image.rotate(self.angle)) - self.img_id = self.canvas.create_image(self.x_pos, self.y_pos, image=self.tk_image, anchor=NW) - - # Get image dimensions - self.image_width = self.tk_image.width() - self.image_height = self.tk_image.height() - - # Start update position loop - self.updatePos() - - def updatePos(self): - # Calculate robot x and y speeds - x_speed = -self.forward_speed*math.sin(math.radians(self.angle)) - y_speed = -self.forward_speed*math.cos(math.radians(self.angle)) - - # Don't update position if it would go outside the canvas - new_x_pos = self.x_pos + x_speed - new_y_pos = self.y_pos + y_speed - if \ - new_x_pos + self.image_width < self.canvas_width and new_x_pos > 0 \ - and new_y_pos + self.image_height < self.canvas_height and new_y_pos > 0: - - self.x_pos += x_speed - self.y_pos += y_speed - self.angle += self.turn_speed - self.angle %= 360 - - self.canvas.delete(self.img_id) - self.tk_image = ImageTk.PhotoImage(self.image.rotate(self.angle)) - self.img_id = self.canvas.create_image(self.x_pos, self.y_pos, image=self.tk_image, anchor=NW) - - self.root.after(UPDATE_PERIOD, lambda: self.updatePos()) - - def updateSpeeds(self, new_speeds: Tuple[float, float]): - ''' - Update left and right speed of robot. - new_speeds = (, ) - ''' - left_speed, right_speed = new_speeds - - self.forward_speed = right_speed + left_speed - self.turn_speed = 2*(right_speed - left_speed) - - def getPos(self) -> Tuple[int,int]: - return (self.x_pos, self.y_pos) - - def getOrientation(self) -> float: - return self.angle diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/RobotSimCanvas.py b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/RobotSimCanvas.py deleted file mode 100644 index c977d95..0000000 --- a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/RobotSimCanvas.py +++ /dev/null @@ -1,75 +0,0 @@ -from tkinter import * -#from robot_sim_gui.Robot import Robot -from robot_sim_gui.Robot import Robot -from robot_sim_gui.StatusLight import StatusLight - -from typing import Tuple - -class RobotSimCanvas: - def __init__(self, root:Tk, canvas_width:int, canvas_height:int, resource_path:str, robot_init_x:int = 0, robot_init_y:int = 0): - # Initialize canvas - self.root = root - self.canvas = Canvas(root, width=canvas_width, height=canvas_height) - self.canvas.pack() - self.__resource_path = resource_path - - # Create robot - self.robot = Robot(root, self.canvas, resource_path, init_x=robot_init_x, init_y=robot_init_y) - - # Add target image - self.target_tk_image = None - self.target_img_id = None - - # Add status light - self.status_light = StatusLight(self.canvas) - - def updateRobotSpeeds(self, new_speeds: Tuple[float, float]): - ''' - Update left and right speed of robot. - new_speeds = (, ) - ''' - self.robot.updateSpeeds(new_speeds) - - def addTarget(self, x_pos=0, y_pos=0): - # Open image is it hasn't been yet - if self.target_tk_image is None: - self.target_tk_image = PhotoImage(file=f'{self.__resource_path}/TrafficCone.png') - - # Generate new target position - self.target_x_pos = x_pos - self.target_y_pos = y_pos - - # Create the image if it isn't on canvas - if self.target_img_id is None: - self.target_img_id = self.canvas.create_image(self.target_x_pos, self.target_y_pos, image=self.target_tk_image, anchor=NW) - - # Otherwise, just move - else: - self.canvas.moveto(self.target_img_id, self.target_x_pos, self.target_y_pos) - - def removeTarget(self): - # Remove target, if it exists - if self.target_img_id is not None: - self.canvas.delete(self.target_img_id) - self.target_img_id = None - self.target_x_pos = None - self.target_y_pos = None - - def getRobotPos(self) -> Tuple[int, int]: - return self.robot.getPos() - - def getRobotOrientation(self) -> float: - return self.robot.getOrientation() - - def getTargetPos(self) -> Tuple[int,int]: - return (self.target_x_pos, self.target_y_pos) - - def setReachedTarget(self): - self.status_light.setReachedTarget() - - def setNavigatingToTarget(self): - self.status_light.setNavigatingToTarget() - - def getReachedTarget(self): - return self.status_light.getReachedTarget() - diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/StatusLight.py b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/StatusLight.py deleted file mode 100644 index c977d95..0000000 --- a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/StatusLight.py +++ /dev/null @@ -1,75 +0,0 @@ -from tkinter import * -#from robot_sim_gui.Robot import Robot -from robot_sim_gui.Robot import Robot -from robot_sim_gui.StatusLight import StatusLight - -from typing import Tuple - -class RobotSimCanvas: - def __init__(self, root:Tk, canvas_width:int, canvas_height:int, resource_path:str, robot_init_x:int = 0, robot_init_y:int = 0): - # Initialize canvas - self.root = root - self.canvas = Canvas(root, width=canvas_width, height=canvas_height) - self.canvas.pack() - self.__resource_path = resource_path - - # Create robot - self.robot = Robot(root, self.canvas, resource_path, init_x=robot_init_x, init_y=robot_init_y) - - # Add target image - self.target_tk_image = None - self.target_img_id = None - - # Add status light - self.status_light = StatusLight(self.canvas) - - def updateRobotSpeeds(self, new_speeds: Tuple[float, float]): - ''' - Update left and right speed of robot. - new_speeds = (, ) - ''' - self.robot.updateSpeeds(new_speeds) - - def addTarget(self, x_pos=0, y_pos=0): - # Open image is it hasn't been yet - if self.target_tk_image is None: - self.target_tk_image = PhotoImage(file=f'{self.__resource_path}/TrafficCone.png') - - # Generate new target position - self.target_x_pos = x_pos - self.target_y_pos = y_pos - - # Create the image if it isn't on canvas - if self.target_img_id is None: - self.target_img_id = self.canvas.create_image(self.target_x_pos, self.target_y_pos, image=self.target_tk_image, anchor=NW) - - # Otherwise, just move - else: - self.canvas.moveto(self.target_img_id, self.target_x_pos, self.target_y_pos) - - def removeTarget(self): - # Remove target, if it exists - if self.target_img_id is not None: - self.canvas.delete(self.target_img_id) - self.target_img_id = None - self.target_x_pos = None - self.target_y_pos = None - - def getRobotPos(self) -> Tuple[int, int]: - return self.robot.getPos() - - def getRobotOrientation(self) -> float: - return self.robot.getOrientation() - - def getTargetPos(self) -> Tuple[int,int]: - return (self.target_x_pos, self.target_y_pos) - - def setReachedTarget(self): - self.status_light.setReachedTarget() - - def setNavigatingToTarget(self): - self.status_light.setNavigatingToTarget() - - def getReachedTarget(self): - return self.status_light.getReachedTarget() - diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/__init__.py b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/gui.py b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/gui.py deleted file mode 100644 index f88eff9..0000000 --- a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/gui.py +++ /dev/null @@ -1,133 +0,0 @@ -#!/usr/bin/env python3 -from tkinter import * - -import rclpy -from rclpy.node import Node - -from robot_sim_gui.RobotSimCanvas import RobotSimCanvas -from robot_sim_gui.msg import DrivePower, IRSensorData -from robot_sim_gui.srv import LightStatus, ContinuationStatus - -import math -import random -from copy import deepcopy -import threading - -class RobotSimGui(Node): - def __init__(self): - - super().__init__('robot_sim_gui') - - # Set up canvas - window = Tk() - window.geometry(f'{window.winfo_screenwidth()}x{window.winfo_screenheight()}') - - # Set window icon - icon_tk_image = PhotoImage(file=f'{rospy.get_param("~resource_path")}/WRIcon.png') - window.wm_iconphoto(False, icon_tk_image) - - robotSimCanvas = RobotSimCanvas(window, window.winfo_screenwidth(), window.winfo_screenheight(), rospy.get_param('~resource_path'), robot_init_x=300, robot_init_y=500) - - #Setting up Publishers - self.ir_publisher = self.create_publisher(IRSensorData, '/robot/ir_sensor', queue_size=1) - - #setting up subscribers - powerSubscriber = rospy.Subscriber(DrivePower, '/robot/drive_power', setRobotPower, queue_size=1) - - #Setting up service - self.light_service = self.create_service(LightStatus, '/robot/status_light', self.processLight) - self.continuation_service = self.create_service(ContinuationStatus, '/robot/continuation', self.processContinuation) - - - self.canContinue = False - self.counter = 0 - - timer_period = 0.1 # seconds - self.timer = self.create_timer(timer_period, self.timer_callback) - self.i = 0 - placeTargetRandom() - - #First Timer - def timer_callback(self): - - currTargetPos = deepcopy(robotSimCanvas.getTargetPos()) # copy-on-read to avoid race condition - currRobotPos = robotSimCanvas.getRobotPos() - - if currTargetPos == [None, None]: - return - - distToTarget = math.sqrt((currTargetPos[0] - currRobotPos[0]) ** 2 + (currTargetPos[1] - currRobotPos[1]) ** 2) - if distToTarget < 100 and robotSimCanvas.getReachedTarget(): - self.canContinue = False - robotSimCanvas.removeTarget() - placeTargetRandom() - - timer_period = 3 # seconds - self.timer_inner = self.create_timer(timer_period, self.resetContinue) - - #Second Timer - def resetContinue(self): - self.canContinue = True - self.counter += 1 - print('CONTINUING...') - print(f'COMPLETE WITH {counter} TARGETS') - - # Set drive power - def setRobotPower(self, msg: DrivePower): - if not robotSimCanvas.getReachedTarget(): - robotSimCanvas.updateRobotSpeeds([msg.leftPower, msg.rightPower]) - else: - robotSimCanvas.updateRobotSpeeds([0,0]) - - - # Process placing/hitting targets - def placeTargetRandom(): - robotSimCanvas.addTarget(random.randint(150,robotSimCanvas.canvas.winfo_width()-150), random.randint(150,robotSimCanvas.canvas.winfo_height()-150)) - - def processLight(self, request, response): - # print(f'HEAD MSG {msg.lightStatus}') - if request.lightStatus: robotSimCanvas.status_light.setReachedTarget() - else: - self.canContinue = False - robotSimCanvas.status_light.setNavigatingToTarget() - return response - - - def processContinuation(self, response): - return response(response.canContinue=self.canContinue) - ### Have not changed from below here##_ - #--------------------------------------------------------------------------------------# - - # Publish sensing messages - def publishIRMessage(publisher: rospy.Publisher): - startingMessage = [math.inf] * 180 - currTargetPos = deepcopy(robotSimCanvas.getTargetPos()) # copy-on-read to avoid race condition - currRobotPos = robotSimCanvas.getRobotPos() - - # If there's no target, publish empty message - if None in currTargetPos: - publisher.publish(IRSensorData(distances=startingMessage)) - return - - dY = currRobotPos[0] - currTargetPos[0] - dX = currRobotPos[1] - currTargetPos[1] - absAngle = math.degrees(math.atan2(dY, dX)) - relAngle = (((absAngle - (robotSimCanvas.getRobotOrientation()))+ 540) % 360) - 180 - - # Get distance - if abs(relAngle) < 90: - ind = 90 - int(relAngle) - startingMessage[ind] = math.sqrt((currTargetPos[0] - currRobotPos[0]) ** 2 + (currTargetPos[1] - currRobotPos[1]) ** 2) - # Publish final message - publisher.publish(IRSensorData(distances=startingMessage)) - irPublisher = rospy.Publisher('/robot/ir_sensor', IRSensorData, queue_size=1) - irTimer = rospy.Timer(rospy.Duration(0.1), lambda _: publishIRMessage(irPublisher)) - - # Stop Tk on ROS shutsdown - def stopTk(): - window.quit() - rospy.on_shutdown(stopTk) - t1 = threading.Thread(target=lambda: rospy.spin()) - t1.start() - - window.mainloop() diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/srv/ContinuationStatus.srv b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/srv/ContinuationStatus.srv deleted file mode 100644 index 9576acb..0000000 --- a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/srv/ContinuationStatus.srv +++ /dev/null @@ -1,2 +0,0 @@ ---- -bool canContinue \ No newline at end of file diff --git a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/srv/LightStatus.srv b/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/srv/LightStatus.srv deleted file mode 100644 index 58ebd6c..0000000 --- a/WRPlayTemp/src/robot_sim_gui/robot_sim_gui/srv/LightStatus.srv +++ /dev/null @@ -1,4 +0,0 @@ -int8 DONE = 0 -int8 NOT_DONE = 1 -int8 lightStatus ---- \ No newline at end of file diff --git a/WRPlayTemp/src/robot_sim_gui/test/test_flake8.py b/WRPlayTemp/src/robot_sim_gui/test/test_flake8.py deleted file mode 100644 index 27ee107..0000000 --- a/WRPlayTemp/src/robot_sim_gui/test/test_flake8.py +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2017 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from ament_flake8.main import main_with_errors -import pytest - - -@pytest.mark.flake8 -@pytest.mark.linter -def test_flake8(): - rc, errors = main_with_errors(argv=[]) - assert rc == 0, \ - 'Found %d code style errors / warnings:\n' % len(errors) + \ - '\n'.join(errors) diff --git a/make_docs.sh b/make_docs.sh new file mode 100755 index 0000000..9f44de3 --- /dev/null +++ b/make_docs.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Install rosdoc2 +apt update && apt install -y python3-rosdoc2 + +# Build code +source /opt/ros/jazzy/setup.bash +colcon build --packages-select robot_sim_gui robot_sim_interfaces + +source install/setup.bash + +# Generate documentation +rosdoc2 build --package-path src/robot_sim_interfaces +rosdoc2 build --package-path src/robot_sim_gui diff --git a/src/robot_sim_gui/LICENSE b/src/robot_sim_gui/LICENSE new file mode 100644 index 0000000..30e8e2e --- /dev/null +++ b/src/robot_sim_gui/LICENSE @@ -0,0 +1,17 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/src/robot_sim_gui/doc/challenges.rst b/src/robot_sim_gui/doc/challenges.rst new file mode 100644 index 0000000..43bf29b --- /dev/null +++ b/src/robot_sim_gui/doc/challenges.rst @@ -0,0 +1,2 @@ +Challenges +========== diff --git a/src/robot_sim_gui/doc/conf.py b/src/robot_sim_gui/doc/conf.py new file mode 100644 index 0000000..35b5f75 --- /dev/null +++ b/src/robot_sim_gui/doc/conf.py @@ -0,0 +1,34 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +import os +import sys + +sys.path.insert(0, os.path.abspath('.')) + +project = 'WRoverPlayground' +author = 'Wisconsin Robotics' +copyright = '2024, Wisconsin Robotics' # noqa: A001 + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx_rtd_theme', +] + +templates_path = ['_templates'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'sphinx_rtd_theme' +# html_static_path = ['_static'] diff --git a/src/robot_sim_gui/doc/index.rst b/src/robot_sim_gui/doc/index.rst new file mode 100644 index 0000000..1381f4a --- /dev/null +++ b/src/robot_sim_gui/doc/index.rst @@ -0,0 +1,33 @@ +.. WRoverPlayground documentation master file, created by sphinx-quickstart. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +WRoverPlayground documentation +============================== + +Add your content using ``reStructuredText`` syntax. See the +`reStructuredText `_ +documentation for details. + + + + +.. toctree:: + :maxdepth: 2 + + Challenges + + Robot Sim Interfaces <../robot_sim_interfaces/index.html#http://> + + + Python API + + Standard Documents + + + + +.. toctree:: + :hidden: + + genindex diff --git a/src/robot_sim_gui/images/SmallCar.png b/src/robot_sim_gui/images/SmallCar.png new file mode 100644 index 0000000..3bf0d2d Binary files /dev/null and b/src/robot_sim_gui/images/SmallCar.png differ diff --git a/src/robot_sim_gui/images/SmallTank.png b/src/robot_sim_gui/images/SmallTank.png new file mode 100644 index 0000000..37c1cf7 Binary files /dev/null and b/src/robot_sim_gui/images/SmallTank.png differ diff --git a/src/robot_sim_gui/images/TrafficCone.png b/src/robot_sim_gui/images/TrafficCone.png new file mode 100644 index 0000000..2af4293 Binary files /dev/null and b/src/robot_sim_gui/images/TrafficCone.png differ diff --git a/src/robot_sim_gui/images/WRIcon.png b/src/robot_sim_gui/images/WRIcon.png new file mode 100644 index 0000000..a40367d Binary files /dev/null and b/src/robot_sim_gui/images/WRIcon.png differ diff --git a/src/robot_sim_gui/launch/gui_launch.py b/src/robot_sim_gui/launch/gui_launch.py new file mode 100644 index 0000000..337614b --- /dev/null +++ b/src/robot_sim_gui/launch/gui_launch.py @@ -0,0 +1,51 @@ +import os + +from ament_index_python.packages import get_package_share_directory + +from launch import LaunchDescription +from launch.actions import DeclareLaunchArgument +from launch.substitutions import LaunchConfiguration, TextSubstitution + +from launch_ros.actions import Node + + +def generate_launch_description(): + resource_path = os.path.join( + get_package_share_directory('robot_sim_gui'), 'images' + ) + + resource_path_arg = DeclareLaunchArgument( + 'resource_path', default_value=TextSubstitution(text=resource_path), + description='Path to image files used by the GUI' + ) + window_height_arg = DeclareLaunchArgument( + 'height', + default_value=TextSubstitution(text='0'), + description='Set height of the GUI window, 0 for full height' + ) + window_width_arg = DeclareLaunchArgument( + 'width', default_value=TextSubstitution(text='0'), + description='Set width of the GUI window, 0 for full height' + ) + + return LaunchDescription([ + resource_path_arg, + window_height_arg, + window_width_arg, + Node( + package='robot_sim_gui', + executable='gui', + name='robot_sim_gui', + arguments=[ + '--resource-path', + LaunchConfiguration('resource_path'), + '--height', + LaunchConfiguration('height'), + '--width', + LaunchConfiguration('width') + ] + # parameters=[{ + # 'resource_path': LaunchConfiguration('resource_path') + # }] + ) + ]) diff --git a/WRPlayTemp/src/robot_sim_gui/package.xml b/src/robot_sim_gui/package.xml similarity index 71% rename from WRPlayTemp/src/robot_sim_gui/package.xml rename to src/robot_sim_gui/package.xml index c110cde..75ce87d 100644 --- a/WRPlayTemp/src/robot_sim_gui/package.xml +++ b/src/robot_sim_gui/package.xml @@ -3,9 +3,11 @@ robot_sim_gui 0.0.0 - TODO: Package description - balabalu - Apache-2.0 + WRoverPlayground GUI + colin + MIT + + robot_sim_interfaces ament_copyright ament_flake8 diff --git a/WRPlayTemp/src/robot_sim_gui/resource/robot_sim_gui b/src/robot_sim_gui/resource/robot_sim_gui similarity index 100% rename from WRPlayTemp/src/robot_sim_gui/resource/robot_sim_gui rename to src/robot_sim_gui/resource/robot_sim_gui diff --git a/WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/__init__.py b/src/robot_sim_gui/robot_sim_gui/__init__.py similarity index 100% rename from WRPlayTemp/build/WRover_Mock/build/lib/WRover_Mock/__init__.py rename to src/robot_sim_gui/robot_sim_gui/__init__.py diff --git a/src/robot_sim_gui/robot_sim_gui/gui.py b/src/robot_sim_gui/robot_sim_gui/gui.py new file mode 100644 index 0000000..0e71fb7 --- /dev/null +++ b/src/robot_sim_gui/robot_sim_gui/gui.py @@ -0,0 +1,65 @@ +"""Entry point for running WRoverPlayground.""" + +import sys +import threading +import tkinter as tk +from argparse import ArgumentParser + +import rclpy + +from robot_sim_gui.robot_sim_canvas import RobotSimCanvas +from robot_sim_gui.robot_sim_node import RobotSimNode + + +def run_ros_node(robot_sim: RobotSimCanvas): + """Launch the WRoverPlayground ROS Node.""" + rclpy.init() + + # Initialize ROS node + sim_node = RobotSimNode(robot_sim) + + rclpy.spin(sim_node) + + # Destroy the node explicitly + # (optional - otherwise it will be done automatically + # when the garbage collector destroys the node object) + sim_node.destroy_node() + rclpy.shutdown() + + +def main(args=None): + """Run WRoverPlayground GUI.""" + parser = ArgumentParser( + 'gui.py', description='A graphical ROS2 rover simulation') + parser.add_argument('--resource-path', type=str, + help='Path to image files used by the GUI') + parser.add_argument('--height', type=int, default=0, + help='Set height of the GUI window, 0 for full height') + parser.add_argument('--width', type=int, default=0, + help='Set width of the GUI window, 0 for full width') + + parsed_args, _ = parser.parse_known_args(args) + resource_path = parsed_args.resource_path + height = parsed_args.height + width = parsed_args.width + + window = tk.Tk() + try: + canvas = RobotSimCanvas(window, resource_path=resource_path, + height=height, width=width, robot_init_x=600, robot_init_y=600) + canvas.random_target() + + # ROS node needs to run in a separate thread because window.mainloop() + # is a blocking method + ros_thread = threading.Thread(target=lambda: run_ros_node(canvas)) + ros_thread.start() + + window.mainloop() + except KeyboardInterrupt: + pass + finally: + window.quit() + + +if __name__ == '__main__': + main(sys.argv) diff --git a/src/robot_sim_gui/robot_sim_gui/robot.py b/src/robot_sim_gui/robot_sim_gui/robot.py new file mode 100644 index 0000000..87ed200 --- /dev/null +++ b/src/robot_sim_gui/robot_sim_gui/robot.py @@ -0,0 +1,86 @@ +import math +import tkinter as tk +from typing import Tuple + +from PIL import Image, ImageTk + +# Frequency for updating the position of the robot (in ms) +UPDATE_PERIOD = 10 + + +class Robot: + """Class for drawing the robot on the canvas.""" + + def __init__( + self, canvas: tk.Canvas, resource_path: str, init_x: int, init_y: int + ): + self.canvas = canvas + self.canvas.update() + self.canvas_width = self.canvas.winfo_width() + self.canvas_height = self.canvas.winfo_height() + self.__resource_path = resource_path + + # Set initial robot position + self.x_pos = init_x + self.y_pos = init_y + self.angle = 0 + + # Initialize robot speed + self.forward_speed = 0 + self.turn_speed = 0 + + # Add robot image + self.image = Image.open(f'{self.__resource_path}/SmallTank.png') + self.tk_image = ImageTk.PhotoImage(self.image.rotate(self.angle)) + self.img_id = self.canvas.create_image( + self.x_pos, self.y_pos, image=self.tk_image, anchor=tk.NW + ) + + # Get image dimensions + self.image_width = self.tk_image.width() + self.image_height = self.tk_image.height() + + # Start update position loop + self.update_pos() + + def update_pos(self): + """Loop for updating the position of the robot.""" + # Calculate robot x and y speeds + x_speed = -self.forward_speed * math.sin(math.radians(self.angle)) + y_speed = -self.forward_speed * math.cos(math.radians(self.angle)) + + # Don't update position if it would go outside the canvas + new_x_pos = self.x_pos + x_speed + new_y_pos = self.y_pos + y_speed + if ( + new_x_pos + self.image_width < self.canvas_width + and new_x_pos > 0 + and new_y_pos + self.image_height < self.canvas_height + and new_y_pos > 0 + ): + + self.x_pos += x_speed + self.y_pos += y_speed + self.angle += self.turn_speed + self.angle %= 360 + + self.canvas.delete(self.img_id) + self.tk_image = ImageTk.PhotoImage(self.image.rotate(self.angle)) + self.img_id = self.canvas.create_image( + self.x_pos, self.y_pos, image=self.tk_image, anchor=tk.NW + ) + + self.canvas.after(UPDATE_PERIOD, self.update_pos) + + def update_speeds(self, left_speed: float, right_speed: float): + """Update left and right speed of robot.""" + self.forward_speed = right_speed + left_speed + self.turn_speed = 2 * (right_speed - left_speed) + + def get_pos(self) -> Tuple[int, int]: + """Return the position of the robot.""" + return (self.x_pos, self.y_pos) + + def get_orientation(self) -> float: + """Return the orientation of the robot.""" + return self.angle diff --git a/src/robot_sim_gui/robot_sim_gui/robot_sim_canvas.py b/src/robot_sim_gui/robot_sim_gui/robot_sim_canvas.py new file mode 100644 index 0000000..4b09ead --- /dev/null +++ b/src/robot_sim_gui/robot_sim_gui/robot_sim_canvas.py @@ -0,0 +1,87 @@ +import random +import tkinter as tk +from typing import Optional, Tuple + +from robot_sim_gui.robot import Robot +from robot_sim_gui.status_light import StatusLight + + +class RobotSimCanvas(tk.Canvas): + """Tk Canvas object for drawing the WRoverPlayground GUI.""" + + def __init__( + self, + root: tk.Tk, + resource_path: str = 'images', + robot_init_x: int = 0, + robot_init_y: int = 0, + **kw + ): + if kw.get('height', 0) == 0: + kw['height'] = root.winfo_screenheight() + if kw.get('width', 0) == 0: + kw['width'] = root.winfo_screenwidth() + + # Initialize canvas + super().__init__(master=root, **kw) + + self.resource_path = resource_path + + # Set up target variables + self.target_tk_image: Optional[tk.PhotoImage] = None + self.target_img_id: Optional[int] = None + self.target_x_pos: Optional[int] = None + self.target_y_pos: Optional[int] = None + + self.pack() + + # Create robot + self.robot = Robot( + self, self.resource_path, init_x=robot_init_x, init_y=robot_init_y + ) + + # # Add status light + self.status_light = StatusLight(self) + + def add_target(self, x_pos: int = 0, y_pos: int = 0): + """Add the target or move it to the specified position.""" + # Open image is it hasn't been yet + if self.target_tk_image is None: + self.target_tk_image = tk.PhotoImage( + file=f'{self.resource_path}/TrafficCone.png' + ) + + # Generate new target position + self.target_x_pos = x_pos + self.target_y_pos = y_pos + + # Create the image if it isn't on canvas + if self.target_img_id is None: + self.target_img_id = self.create_image( + self.target_x_pos, + self.target_y_pos, + image=self.target_tk_image, + anchor=tk.NW, + ) + + # Otherwise, just move the target + else: + self.moveto(self.target_img_id, self.target_x_pos, self.target_y_pos) + + def random_target(self): + """Place the target at a random position.""" + random_x = random.randint(150, self.winfo_width() - 150) + random_y = random.randint(150, self.winfo_height() - 150) + self.add_target(random_x, random_y) + + def remove_target(self): + """Remove target, if it exists.""" + if self.target_img_id is not None: + self.delete(self.target_img_id) + self.target_img_id = None + self.target_x_pos = None + self.target_y_pos = None + + def get_target_pos(self) -> Tuple[Optional[int], Optional[int]]: + """Return the position of the target.""" + return (self.target_x_pos, self.target_y_pos) diff --git a/src/robot_sim_gui/robot_sim_gui/robot_sim_node.py b/src/robot_sim_gui/robot_sim_gui/robot_sim_node.py new file mode 100644 index 0000000..e6a3740 --- /dev/null +++ b/src/robot_sim_gui/robot_sim_gui/robot_sim_node.py @@ -0,0 +1,123 @@ +import math +import threading +from copy import deepcopy + +from rclpy.node import Node + +from robot_sim_gui.robot_sim_canvas import RobotSimCanvas + +from robot_sim_interfaces.msg import DrivePower, IRSensorData +from robot_sim_interfaces.srv import (ContinueStatus, ContinueStatus_Response, + StatusLight, StatusLight_Request, + StatusLight_Response) + + +class RobotSimNode(Node): + """ROS Node for WRoverPlayground.""" + + def __init__(self, robot_sim_canvas: RobotSimCanvas): + super().__init__('robot_sim_node') + + self.sim_canvas = robot_sim_canvas + + self._drive_subscriber = self.create_subscription( + DrivePower, '/robot/drive_power', callback=self.drive_pub_callback, qos_profile=1) + + timer_period = 0.1 + self._ir_publisher = self.create_publisher( + IRSensorData, '/robot/ir_sensor', qos_profile=1) + self._ir_timer = self.create_timer(timer_period, self.publish_ir_data) + + self.light_service = self.create_service( + StatusLight, '/robot/status_light', callback=self.light_callback) + + self.can_continue = False + self.counter = 0 + self.continue_service = self.create_service( + ContinueStatus, '/robot/continue', + callback=lambda _, response: self.continue_callback(response)) + + self._target_timer = self.create_timer( + timer_period, self.process_targets) + + def drive_pub_callback(self, msg: DrivePower) -> None: + """Set robot drive speed.""" + # if robot is not initialized, do nothing + if self.sim_canvas.robot is None: + return + + self.sim_canvas.robot.update_speeds( + left_speed=msg.left_power, right_speed=msg.right_power) + + def publish_ir_data(self) -> None: + """Publish IR sensor data.""" + ir_data = [math.inf] * 180 + + # copy-on-read to avoid race condition + target_pos = deepcopy(self.sim_canvas.get_target_pos()) + robot_pos = deepcopy(self.sim_canvas.robot.get_pos()) + + # If there's no target, publish empty message + if None in target_pos: + self._ir_publisher.publish(IRSensorData(distances=ir_data)) + return + + # Get angle + robot_orientation = self.sim_canvas.robot.get_orientation() + dY = robot_pos[0] - robot_pos[0] + dX = robot_pos[1] - robot_pos[1] + absAngle = math.degrees(math.atan2(dY, dX)) + relAngle = (((absAngle - robot_orientation) + 540) % 360) - 180 + + # Get distance + if abs(relAngle) < 90: + ind = 90 - int(relAngle) + ir_data[ind] = math.sqrt( + (robot_pos[0] - robot_pos[0]) ** 2 + (robot_pos[1] - robot_pos[1]) ** 2) + + # Publish final message + self._ir_publisher.publish(IRSensorData(distances=ir_data)) + + def light_callback(self, request: StatusLight_Request, + response: StatusLight_Response) -> StatusLight_Response: + """Handle the status light service.""" + if request.light_status == StatusLight_Request.DONE: + self.sim_canvas.status_light.set_reached_target() + else: + self.can_continue = False + self.sim_canvas.status_light.set_navigating_to_target() + + return response + + def continue_callback( + self, response: ContinueStatus_Response) -> ContinueStatus_Response: + """Handle the continue service.""" + response.can_continue = self.can_continue + + return response + + def process_targets(self): + """Check if the robot is at the target and the status light is set to done.""" + # copy-on-read to avoid race condition + target_pos = deepcopy(self.sim_canvas.get_target_pos()) + robot_pos = deepcopy(self.sim_canvas.robot.get_pos()) + + if target_pos[0] is None or target_pos[1] is None: + return + + dist_to_target = math.sqrt( + (target_pos[0] - robot_pos[0]) ** 2 + (target_pos[1] - robot_pos[1]) ** 2) + if dist_to_target < 100 and self.sim_canvas.status_light.get_reached_target(): + self.can_continue = False + self.sim_canvas.remove_target() + self.sim_canvas.random_target() + timer = threading.Timer(3, self.reset_continue) + timer.daemon = True + timer.start() + + def reset_continue(self): + """Reset can_continue, allowing the robot to go to the next target.""" + self.can_continue = True + self.counter += 1 + self.get_logger().info('CONTINUING...') + self.get_logger().info(f'COMPLETE WITH {self.counter} TARGETS') diff --git a/src/robot_sim_gui/robot_sim_gui/status_light.py b/src/robot_sim_gui/robot_sim_gui/status_light.py new file mode 100644 index 0000000..cbcffc7 --- /dev/null +++ b/src/robot_sim_gui/robot_sim_gui/status_light.py @@ -0,0 +1,68 @@ +import tkinter as tk +from tkinter import ttk + +FRAME_TOP_LEFT = (10, 10) +FRAME_DIM = (160, 70) + +LIGHT_DIAM = 20 +LIGHT_DIMEN = (LIGHT_DIAM, LIGHT_DIAM) + + +class StatusLight: + """Class for drawing the status light on the canvas.""" + + def __init__(self, canvas: tk.Canvas, reached_target: bool = False): + self.canvas = canvas + self.__reached_target = reached_target + + # Create Style object to configure styles + s = ttk.Style() + + # Create status light frame + s.configure('StatusFrame.TFrame', background='white', relief='solid') + self.frame = ttk.Frame( + self.canvas, width=FRAME_DIM[0], height=FRAME_DIM[1], style='StatusFrame.TFrame') + self.frame['padding'] = 5 + + # Create status heading + s.configure('StatusLabel.TLabel', background='white', anchor=tk.NW) + self.status_heading = ttk.Label( + self.frame, text='Robot Status', font=('TkHeadingFont', 16), + style='StatusLabel.TLabel') + + # Create status light + self.light_canvas = tk.Canvas( + self.frame, width=LIGHT_DIMEN[0] + 5, height=LIGHT_DIMEN[1] + 5, bg='white') + self.light_canvas.configure(highlightthickness=0, borderwidth=0) + self.status_light = self.light_canvas.create_oval( + 0, 0, *LIGHT_DIMEN, fill='red', outline='black') + + # Create status message + self.status_msg = ttk.Label( + self.frame, text='Navigating to target', style='StatusLabel.TLabel') + + # Arrange status light contents within frame + self.status_heading.grid(column=0, row=0, columnspan=2, sticky=tk.NW) + self.light_canvas.grid(column=0, row=1, sticky=tk.NW) + self.status_msg.grid(column=1, row=1, sticky=tk.NW) + self.frame.grid_columnconfigure(1, minsize=120) + + # Add frame of status light to parent Canvas + self.canvas.create_window( + *FRAME_TOP_LEFT, anchor=tk.NW, window=self.frame) + + def get_reached_target(self) -> bool: + """Return true if the status light is set to done, false otherwise.""" + return self.__reached_target + + def set_reached_target(self): + """Set the status light to done.""" + self.light_canvas.itemconfig(self.status_light, fill='green') + self.status_msg['text'] = 'Reached target' + self.__reached_target = True + + def set_navigating_to_target(self): + """Set the status light to not done.""" + self.light_canvas.itemconfig(self.status_light, fill='red') + self.status_msg['text'] = 'Navigating to target' + self.__reached_target = False diff --git a/WRPlayTemp/src/robot_sim_gui/setup.cfg b/src/robot_sim_gui/setup.cfg similarity index 100% rename from WRPlayTemp/src/robot_sim_gui/setup.cfg rename to src/robot_sim_gui/setup.cfg diff --git a/WRPlayTemp/src/robot_sim_gui/setup.py b/src/robot_sim_gui/setup.py similarity index 55% rename from WRPlayTemp/src/robot_sim_gui/setup.py rename to src/robot_sim_gui/setup.py index ad2d461..5f78ab5 100644 --- a/WRPlayTemp/src/robot_sim_gui/setup.py +++ b/src/robot_sim_gui/setup.py @@ -1,3 +1,6 @@ +import os +from glob import glob + from setuptools import find_packages, setup package_name = 'robot_sim_gui' @@ -10,16 +13,22 @@ ('share/ament_index/resource_index/packages', ['resource/' + package_name]), ('share/' + package_name, ['package.xml']), + # Copy image files + (os.path.join('share', package_name, 'images'), glob(os.path.join('images', '*.png'))), + # Include all launch files. + (os.path.join('share', package_name, 'launch'), + glob(os.path.join('launch', '*launch.[pxy][yma]*'))) ], install_requires=['setuptools'], zip_safe=True, - maintainer='balabalu', - maintainer_email='balabalu@todo.todo', + maintainer='colin', + maintainer_email='colin@todo.todo', description='TODO: Package description', - license='Apache-2.0', + license='MIT', tests_require=['pytest'], entry_points={ 'console_scripts': [ + 'gui = robot_sim_gui.gui:main' ], }, ) diff --git a/src/robot_sim_gui/test/flake8.ini b/src/robot_sim_gui/test/flake8.ini new file mode 100644 index 0000000..391ed11 --- /dev/null +++ b/src/robot_sim_gui/test/flake8.ini @@ -0,0 +1,5 @@ +[flake8] +extend-ignore = B902,C816,D100,D101,D102,D103,D104,D105,D106,D107,D203,D212,D404,I202 +max-line-length = 99 +show-source = true +statistics = true diff --git a/WRPlayTemp/src/robot_sim_gui/test/test_copyright.py b/src/robot_sim_gui/test/test_copyright.py similarity index 99% rename from WRPlayTemp/src/robot_sim_gui/test/test_copyright.py rename to src/robot_sim_gui/test/test_copyright.py index 97a3919..df7fd9e 100644 --- a/WRPlayTemp/src/robot_sim_gui/test/test_copyright.py +++ b/src/robot_sim_gui/test/test_copyright.py @@ -13,6 +13,7 @@ # limitations under the License. from ament_copyright.main import main + import pytest diff --git a/WRPlayTemp/src/WRover_Mock/test/test_flake8.py b/src/robot_sim_gui/test/test_flake8.py similarity index 84% rename from WRPlayTemp/src/WRover_Mock/test/test_flake8.py rename to src/robot_sim_gui/test/test_flake8.py index 27ee107..26ee25a 100644 --- a/WRPlayTemp/src/WRover_Mock/test/test_flake8.py +++ b/src/robot_sim_gui/test/test_flake8.py @@ -12,14 +12,20 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os + from ament_flake8.main import main_with_errors + import pytest @pytest.mark.flake8 @pytest.mark.linter def test_flake8(): - rc, errors = main_with_errors(argv=[]) + config_file = os.path.join( + os.path.dirname(__file__), 'flake8.ini') + + rc, errors = main_with_errors(argv=['--config', config_file]) assert rc == 0, \ 'Found %d code style errors / warnings:\n' % len(errors) + \ '\n'.join(errors) diff --git a/WRPlayTemp/src/robot_sim_gui/test/test_pep257.py b/src/robot_sim_gui/test/test_pep257.py similarity index 99% rename from WRPlayTemp/src/robot_sim_gui/test/test_pep257.py rename to src/robot_sim_gui/test/test_pep257.py index b234a38..2abf609 100644 --- a/WRPlayTemp/src/robot_sim_gui/test/test_pep257.py +++ b/src/robot_sim_gui/test/test_pep257.py @@ -13,6 +13,7 @@ # limitations under the License. from ament_pep257.main import main + import pytest diff --git a/src/robot_sim_interfaces/CMakeLists.txt b/src/robot_sim_interfaces/CMakeLists.txt new file mode 100644 index 0000000..ca2a747 --- /dev/null +++ b/src/robot_sim_interfaces/CMakeLists.txt @@ -0,0 +1,35 @@ +cmake_minimum_required(VERSION 3.8) +project(robot_sim_interfaces) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +# find dependencies +find_package(ament_cmake REQUIRED) +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) + +find_package(rosidl_default_generators REQUIRED) + +rosidl_generate_interfaces(${PROJECT_NAME} + "msg/DrivePower.msg" + "msg/IRSensorData.msg" + "srv/ContinueStatus.srv" + "srv/StatusLight.srv" +) + +if(BUILD_TESTING) + find_package(ament_lint_auto REQUIRED) + # the following line skips the linter which checks for copyrights + # comment the line when a copyright and license is added to all source files + set(ament_cmake_copyright_FOUND TRUE) + # the following line skips cpplint (only works in a git repo) + # comment the line when this package is in a git repo and when + # a copyright and license is added to all source files + set(ament_cmake_cpplint_FOUND TRUE) + ament_lint_auto_find_test_dependencies() +endif() + +ament_package() diff --git a/src/robot_sim_interfaces/LICENSE b/src/robot_sim_interfaces/LICENSE new file mode 100644 index 0000000..30e8e2e --- /dev/null +++ b/src/robot_sim_interfaces/LICENSE @@ -0,0 +1,17 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/src/robot_sim_interfaces/msg/DrivePower.msg b/src/robot_sim_interfaces/msg/DrivePower.msg new file mode 100644 index 0000000..42efec4 --- /dev/null +++ b/src/robot_sim_interfaces/msg/DrivePower.msg @@ -0,0 +1,3 @@ +# Message for setting the left and right power of the rover. +float64 left_power +float64 right_power diff --git a/src/robot_sim_interfaces/msg/IRSensorData.msg b/src/robot_sim_interfaces/msg/IRSensorData.msg new file mode 100644 index 0000000..6e4b832 --- /dev/null +++ b/src/robot_sim_interfaces/msg/IRSensorData.msg @@ -0,0 +1,5 @@ +# Message that represents IR sensor data as an array. +# The index of the array represents an angle from 0 to 180 (left to right). +# The value of the array is the distance to the target at that angle, +# or infinity if the target is not at that angle. +float64[180] distances diff --git a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml b/src/robot_sim_interfaces/package.xml similarity index 51% rename from WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml rename to src/robot_sim_interfaces/package.xml index cbdd499..1332875 100644 --- a/WRPlayTemp/install/wrover_mock/share/wrover_mock/package.xml +++ b/src/robot_sim_interfaces/package.xml @@ -1,17 +1,22 @@ - wrover_mock + robot_sim_interfaces 0.0.0 - TODO: Package description - balabalu - Apache-2.0 + ROS message and service defintions for WRoverPlayground + colin + MIT ament_cmake + rosidl_default_generators + rosidl_default_runtime + ament_lint_auto ament_lint_common + rosidl_interface_packages + ament_cmake diff --git a/src/robot_sim_interfaces/srv/ContinueStatus.srv b/src/robot_sim_interfaces/srv/ContinueStatus.srv new file mode 100644 index 0000000..9686884 --- /dev/null +++ b/src/robot_sim_interfaces/srv/ContinueStatus.srv @@ -0,0 +1,5 @@ +# This service has an empty request +--- +# The response sets can_continue to True if the rover can move to the next target, +# and False otherwise +bool can_continue diff --git a/src/robot_sim_interfaces/srv/StatusLight.srv b/src/robot_sim_interfaces/srv/StatusLight.srv new file mode 100644 index 0000000..01c1dfd --- /dev/null +++ b/src/robot_sim_interfaces/srv/StatusLight.srv @@ -0,0 +1,7 @@ +# Constants for status light values. +int8 NOT_DONE = 0 +int8 DONE = 1 +# Request parameter to set the status light. +int8 light_status +--- +# This service has an empty response.