-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathros.osdeps-jazzy
3074 lines (3074 loc) · 87.6 KB
/
ros.osdeps-jazzy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# This file is generated, do not edit!
# based on https://raw.githubusercontent.com/ros/rosdistro/refs/heads/master/jazzy/distribution.yaml
#
# If you need a refresh, call autoproj reconfigure or delete just this file and run autoproj update --config
#
smacc2:
ubuntu: ros-jazzy-smacc2
smacc2_msgs:
ubuntu: ros-jazzy-smacc2-msgs
acado_vendor:
ubuntu: ros-jazzy-acado-vendor
ackermann_msgs:
ubuntu: ros-jazzy-ackermann-msgs
actuator_msgs:
ubuntu: ros-jazzy-actuator-msgs
adaptive_component:
ubuntu: ros-jazzy-adaptive-component
ai_prompt_msgs:
ubuntu: ros-jazzy-ai-prompt-msgs
ament_acceleration:
ubuntu: ros-jazzy-ament-acceleration
ament_black:
ubuntu: ros-jazzy-ament-black
ament_cmake_black:
ubuntu: ros-jazzy-ament-cmake-black
ament_cmake:
ubuntu: ros-jazzy-ament-cmake
ament_cmake_auto:
ubuntu: ros-jazzy-ament-cmake-auto
ament_cmake_core:
ubuntu: ros-jazzy-ament-cmake-core
ament_cmake_export_definitions:
ubuntu: ros-jazzy-ament-cmake-export-definitions
ament_cmake_export_dependencies:
ubuntu: ros-jazzy-ament-cmake-export-dependencies
ament_cmake_export_include_directories:
ubuntu: ros-jazzy-ament-cmake-export-include-directories
ament_cmake_export_interfaces:
ubuntu: ros-jazzy-ament-cmake-export-interfaces
ament_cmake_export_libraries:
ubuntu: ros-jazzy-ament-cmake-export-libraries
ament_cmake_export_link_flags:
ubuntu: ros-jazzy-ament-cmake-export-link-flags
ament_cmake_export_targets:
ubuntu: ros-jazzy-ament-cmake-export-targets
ament_cmake_gen_version_h:
ubuntu: ros-jazzy-ament-cmake-gen-version-h
ament_cmake_gmock:
ubuntu: ros-jazzy-ament-cmake-gmock
ament_cmake_google_benchmark:
ubuntu: ros-jazzy-ament-cmake-google-benchmark
ament_cmake_gtest:
ubuntu: ros-jazzy-ament-cmake-gtest
ament_cmake_include_directories:
ubuntu: ros-jazzy-ament-cmake-include-directories
ament_cmake_libraries:
ubuntu: ros-jazzy-ament-cmake-libraries
ament_cmake_pytest:
ubuntu: ros-jazzy-ament-cmake-pytest
ament_cmake_python:
ubuntu: ros-jazzy-ament-cmake-python
ament_cmake_target_dependencies:
ubuntu: ros-jazzy-ament-cmake-target-dependencies
ament_cmake_test:
ubuntu: ros-jazzy-ament-cmake-test
ament_cmake_vendor_package:
ubuntu: ros-jazzy-ament-cmake-vendor-package
ament_cmake_version:
ubuntu: ros-jazzy-ament-cmake-version
ament_cmake_catch2:
ubuntu: ros-jazzy-ament-cmake-catch2
ament_cmake_ros:
ubuntu: ros-jazzy-ament-cmake-ros
domain_coordinator:
ubuntu: ros-jazzy-domain-coordinator
ament_download:
ubuntu: ros-jazzy-ament-download
ament_index_cpp:
ubuntu: ros-jazzy-ament-index-cpp
ament_index_python:
ubuntu: ros-jazzy-ament-index-python
ament_clang_format:
ubuntu: ros-jazzy-ament-clang-format
ament_clang_tidy:
ubuntu: ros-jazzy-ament-clang-tidy
ament_cmake_clang_format:
ubuntu: ros-jazzy-ament-cmake-clang-format
ament_cmake_clang_tidy:
ubuntu: ros-jazzy-ament-cmake-clang-tidy
ament_cmake_copyright:
ubuntu: ros-jazzy-ament-cmake-copyright
ament_cmake_cppcheck:
ubuntu: ros-jazzy-ament-cmake-cppcheck
ament_cmake_cpplint:
ubuntu: ros-jazzy-ament-cmake-cpplint
ament_cmake_flake8:
ubuntu: ros-jazzy-ament-cmake-flake8
ament_cmake_lint_cmake:
ubuntu: ros-jazzy-ament-cmake-lint-cmake
ament_cmake_mypy:
ubuntu: ros-jazzy-ament-cmake-mypy
ament_cmake_pclint:
ubuntu: ros-jazzy-ament-cmake-pclint
ament_cmake_pep257:
ubuntu: ros-jazzy-ament-cmake-pep257
ament_cmake_pycodestyle:
ubuntu: ros-jazzy-ament-cmake-pycodestyle
ament_cmake_pyflakes:
ubuntu: ros-jazzy-ament-cmake-pyflakes
ament_cmake_uncrustify:
ubuntu: ros-jazzy-ament-cmake-uncrustify
ament_cmake_xmllint:
ubuntu: ros-jazzy-ament-cmake-xmllint
ament_copyright:
ubuntu: ros-jazzy-ament-copyright
ament_cppcheck:
ubuntu: ros-jazzy-ament-cppcheck
ament_cpplint:
ubuntu: ros-jazzy-ament-cpplint
ament_flake8:
ubuntu: ros-jazzy-ament-flake8
ament_lint:
ubuntu: ros-jazzy-ament-lint
ament_lint_auto:
ubuntu: ros-jazzy-ament-lint-auto
ament_lint_cmake:
ubuntu: ros-jazzy-ament-lint-cmake
ament_lint_common:
ubuntu: ros-jazzy-ament-lint-common
ament_mypy:
ubuntu: ros-jazzy-ament-mypy
ament_pclint:
ubuntu: ros-jazzy-ament-pclint
ament_pep257:
ubuntu: ros-jazzy-ament-pep257
ament_pycodestyle:
ubuntu: ros-jazzy-ament-pycodestyle
ament_pyflakes:
ubuntu: ros-jazzy-ament-pyflakes
ament_uncrustify:
ubuntu: ros-jazzy-ament-uncrustify
ament_xmllint:
ubuntu: ros-jazzy-ament-xmllint
ament_nodl:
ubuntu: ros-jazzy-ament-nodl
ament_package:
ubuntu: ros-jazzy-ament-package
ament_vitis:
ubuntu: ros-jazzy-ament-vitis
angles:
ubuntu: ros-jazzy-angles
apex_test_tools:
ubuntu: ros-jazzy-apex-test-tools
test_apex_test_tools:
ubuntu: ros-jazzy-test-apex-test-tools
apriltag:
ubuntu: ros-jazzy-apriltag
apriltag_detector:
ubuntu: ros-jazzy-apriltag-detector
apriltag_mit:
ubuntu: ros-jazzy-apriltag-mit
apriltag_msgs:
ubuntu: ros-jazzy-apriltag-msgs
apriltag_ros:
ubuntu: ros-jazzy-apriltag-ros
ar4_ros_driver:
ubuntu: ros-jazzy-ar4-ros-driver
aruco_opencv:
ubuntu: ros-jazzy-aruco-opencv
aruco_opencv_msgs:
ubuntu: ros-jazzy-aruco-opencv-msgs
aruco:
ubuntu: ros-jazzy-aruco
aruco_msgs:
ubuntu: ros-jazzy-aruco-msgs
aruco_ros:
ubuntu: ros-jazzy-aruco-ros
delphi_esr_msgs:
ubuntu: ros-jazzy-delphi-esr-msgs
delphi_mrr_msgs:
ubuntu: ros-jazzy-delphi-mrr-msgs
delphi_srr_msgs:
ubuntu: ros-jazzy-delphi-srr-msgs
derived_object_msgs:
ubuntu: ros-jazzy-derived-object-msgs
ibeo_msgs:
ubuntu: ros-jazzy-ibeo-msgs
kartech_linear_actuator_msgs:
ubuntu: ros-jazzy-kartech-linear-actuator-msgs
mobileye_560_660_msgs:
ubuntu: ros-jazzy-mobileye-560-660-msgs
neobotix_usboard_msgs:
ubuntu: ros-jazzy-neobotix-usboard-msgs
async_web_server_cpp:
ubuntu: ros-jazzy-async-web-server-cpp
asyncapi_gencpp:
ubuntu: ros-jazzy-asyncapi-gencpp
automatika_ros_sugar:
ubuntu: ros-jazzy-automatika-ros-sugar
automotive_autonomy_msgs:
ubuntu: ros-jazzy-automotive-autonomy-msgs
automotive_navigation_msgs:
ubuntu: ros-jazzy-automotive-navigation-msgs
automotive_platform_msgs:
ubuntu: ros-jazzy-automotive-platform-msgs
autoware_adapi_v1_msgs:
ubuntu: ros-jazzy-autoware-adapi-v1-msgs
autoware_adapi_version_msgs:
ubuntu: ros-jazzy-autoware-adapi-version-msgs
autoware_auto_msgs:
ubuntu: ros-jazzy-autoware-auto-msgs
autoware_cmake:
ubuntu: ros-jazzy-autoware-cmake
autoware_lint_common:
ubuntu: ros-jazzy-autoware-lint-common
autoware_internal_debug_msgs:
ubuntu: ros-jazzy-autoware-internal-debug-msgs
autoware_internal_msgs:
ubuntu: ros-jazzy-autoware-internal-msgs
autoware_internal_perception_msgs:
ubuntu: ros-jazzy-autoware-internal-perception-msgs
autoware_lanelet2_extension:
ubuntu: ros-jazzy-autoware-lanelet2-extension
autoware_lanelet2_extension_python:
ubuntu: ros-jazzy-autoware-lanelet2-extension-python
autoware_common_msgs:
ubuntu: ros-jazzy-autoware-common-msgs
autoware_control_msgs:
ubuntu: ros-jazzy-autoware-control-msgs
autoware_localization_msgs:
ubuntu: ros-jazzy-autoware-localization-msgs
autoware_map_msgs:
ubuntu: ros-jazzy-autoware-map-msgs
autoware_perception_msgs:
ubuntu: ros-jazzy-autoware-perception-msgs
autoware_planning_msgs:
ubuntu: ros-jazzy-autoware-planning-msgs
autoware_sensing_msgs:
ubuntu: ros-jazzy-autoware-sensing-msgs
autoware_system_msgs:
ubuntu: ros-jazzy-autoware-system-msgs
autoware_v2x_msgs:
ubuntu: ros-jazzy-autoware-v2x-msgs
autoware_vehicle_msgs:
ubuntu: ros-jazzy-autoware-vehicle-msgs
autoware_utils:
ubuntu: ros-jazzy-autoware-utils
avt_vimba_camera:
ubuntu: ros-jazzy-avt-vimba-camera
aws_robomaker_small_warehouse_world:
ubuntu: ros-jazzy-aws-robomaker-small-warehouse-world
aws_sdk_cpp_vendor:
ubuntu: ros-jazzy-aws-sdk-cpp-vendor
axis_camera:
ubuntu: ros-jazzy-axis-camera
axis_description:
ubuntu: ros-jazzy-axis-description
axis_msgs:
ubuntu: ros-jazzy-axis-msgs
azure_iot_sdk_c:
ubuntu: ros-jazzy-azure-iot-sdk-c
backward_ros:
ubuntu: ros-jazzy-backward-ros
bag2_to_image:
ubuntu: ros-jazzy-bag2-to-image
behaviortree_cpp_v3:
ubuntu: ros-jazzy-behaviortree-cpp-v3
behaviortree_cpp:
ubuntu: ros-jazzy-behaviortree-cpp
beluga:
ubuntu: ros-jazzy-beluga
beluga_amcl:
ubuntu: ros-jazzy-beluga-amcl
beluga_ros:
ubuntu: ros-jazzy-beluga-ros
bno055:
ubuntu: ros-jazzy-bno055
bond:
ubuntu: ros-jazzy-bond
bond_core:
ubuntu: ros-jazzy-bond-core
bondcpp:
ubuntu: ros-jazzy-bondcpp
bondpy:
ubuntu: ros-jazzy-bondpy
smclib:
ubuntu: ros-jazzy-smclib
boost_geometry_util:
ubuntu: ros-jazzy-boost-geometry-util
boost_plugin_loader:
ubuntu: ros-jazzy-boost-plugin-loader
boost_sml_vendor:
ubuntu: ros-jazzy-boost-sml-vendor
camera_aravis2:
ubuntu: ros-jazzy-camera-aravis2
camera_aravis2_msgs:
ubuntu: ros-jazzy-camera-aravis2-msgs
camera_ros:
ubuntu: ros-jazzy-camera-ros
cartographer:
ubuntu: ros-jazzy-cartographer
cartographer_ros:
ubuntu: ros-jazzy-cartographer-ros
cartographer_ros_msgs:
ubuntu: ros-jazzy-cartographer-ros-msgs
cartographer_rviz:
ubuntu: ros-jazzy-cartographer-rviz
cascade_lifecycle_msgs:
ubuntu: ros-jazzy-cascade-lifecycle-msgs
rclcpp_cascade_lifecycle:
ubuntu: ros-jazzy-rclcpp-cascade-lifecycle
catch_ros2:
ubuntu: ros-jazzy-catch-ros2
class_loader:
ubuntu: ros-jazzy-class-loader
classic_bags:
ubuntu: ros-jazzy-classic-bags
clearpath_motor_msgs:
ubuntu: ros-jazzy-clearpath-motor-msgs
clearpath_msgs:
ubuntu: ros-jazzy-clearpath-msgs
clearpath_platform_msgs:
ubuntu: ros-jazzy-clearpath-platform-msgs
clearpath_ros2_socketcan_interface:
ubuntu: ros-jazzy-clearpath-ros2-socketcan-interface
clips_vendor:
ubuntu: ros-jazzy-clips-vendor
coal:
ubuntu: ros-jazzy-coal
color_names:
ubuntu: ros-jazzy-color-names
color_util:
ubuntu: ros-jazzy-color-util
actionlib_msgs:
ubuntu: ros-jazzy-actionlib-msgs
common_interfaces:
ubuntu: ros-jazzy-common-interfaces
diagnostic_msgs:
ubuntu: ros-jazzy-diagnostic-msgs
geometry_msgs:
ubuntu: ros-jazzy-geometry-msgs
nav_msgs:
ubuntu: ros-jazzy-nav-msgs
sensor_msgs:
ubuntu: ros-jazzy-sensor-msgs
sensor_msgs_py:
ubuntu: ros-jazzy-sensor-msgs-py
shape_msgs:
ubuntu: ros-jazzy-shape-msgs
std_msgs:
ubuntu: ros-jazzy-std-msgs
std_srvs:
ubuntu: ros-jazzy-std-srvs
stereo_msgs:
ubuntu: ros-jazzy-stereo-msgs
trajectory_msgs:
ubuntu: ros-jazzy-trajectory-msgs
visualization_msgs:
ubuntu: ros-jazzy-visualization-msgs
console_bridge_vendor:
ubuntu: ros-jazzy-console-bridge-vendor
control_box_rst:
ubuntu: ros-jazzy-control-box-rst
control_msgs:
ubuntu: ros-jazzy-control-msgs
control_toolbox:
ubuntu: ros-jazzy-control-toolbox
tcb_span:
ubuntu: ros-jazzy-tcb-span
tl_expected:
ubuntu: ros-jazzy-tl-expected
create3_coverage:
ubuntu: ros-jazzy-create3-coverage
create3_examples_msgs:
ubuntu: ros-jazzy-create3-examples-msgs
create3_examples_py:
ubuntu: ros-jazzy-create3-examples-py
create3_lidar_slam:
ubuntu: ros-jazzy-create3-lidar-slam
create3_republisher:
ubuntu: ros-jazzy-create3-republisher
create3_teleop:
ubuntu: ros-jazzy-create3-teleop
irobot_create_common_bringup:
ubuntu: ros-jazzy-irobot-create-common-bringup
irobot_create_control:
ubuntu: ros-jazzy-irobot-create-control
irobot_create_description:
ubuntu: ros-jazzy-irobot-create-description
irobot_create_gz_bringup:
ubuntu: ros-jazzy-irobot-create-gz-bringup
irobot_create_gz_plugins:
ubuntu: ros-jazzy-irobot-create-gz-plugins
irobot_create_gz_sim:
ubuntu: ros-jazzy-irobot-create-gz-sim
irobot_create_gz_toolbox:
ubuntu: ros-jazzy-irobot-create-gz-toolbox
irobot_create_nodes:
ubuntu: ros-jazzy-irobot-create-nodes
irobot_create_toolbox:
ubuntu: ros-jazzy-irobot-create-toolbox
cudnn_cmake_module:
ubuntu: ros-jazzy-cudnn-cmake-module
cyclonedds:
ubuntu: ros-jazzy-cyclonedds
data_tamer_cpp:
ubuntu: ros-jazzy-data-tamer-cpp
data_tamer_msgs:
ubuntu: ros-jazzy-data-tamer-msgs
dataspeed_can:
ubuntu: ros-jazzy-dataspeed-can
dataspeed_can_msg_filters:
ubuntu: ros-jazzy-dataspeed-can-msg-filters
dataspeed_can_msgs:
ubuntu: ros-jazzy-dataspeed-can-msgs
dataspeed_can_tools:
ubuntu: ros-jazzy-dataspeed-can-tools
dataspeed_can_usb:
ubuntu: ros-jazzy-dataspeed-can-usb
ds_dbw:
ubuntu: ros-jazzy-ds-dbw
ds_dbw_can:
ubuntu: ros-jazzy-ds-dbw-can
ds_dbw_joystick_demo:
ubuntu: ros-jazzy-ds-dbw-joystick-demo
ds_dbw_msgs:
ubuntu: ros-jazzy-ds-dbw-msgs
action_tutorials_cpp:
ubuntu: ros-jazzy-action-tutorials-cpp
action_tutorials_interfaces:
ubuntu: ros-jazzy-action-tutorials-interfaces
action_tutorials_py:
ubuntu: ros-jazzy-action-tutorials-py
composition:
ubuntu: ros-jazzy-composition
demo_nodes_cpp:
ubuntu: ros-jazzy-demo-nodes-cpp
demo_nodes_cpp_native:
ubuntu: ros-jazzy-demo-nodes-cpp-native
demo_nodes_py:
ubuntu: ros-jazzy-demo-nodes-py
dummy_map_server:
ubuntu: ros-jazzy-dummy-map-server
dummy_robot_bringup:
ubuntu: ros-jazzy-dummy-robot-bringup
dummy_sensors:
ubuntu: ros-jazzy-dummy-sensors
image_tools:
ubuntu: ros-jazzy-image-tools
intra_process_demo:
ubuntu: ros-jazzy-intra-process-demo
lifecycle:
ubuntu: ros-jazzy-lifecycle
lifecycle_py:
ubuntu: ros-jazzy-lifecycle-py
logging_demo:
ubuntu: ros-jazzy-logging-demo
pendulum_control:
ubuntu: ros-jazzy-pendulum-control
pendulum_msgs:
ubuntu: ros-jazzy-pendulum-msgs
quality_of_service_demo_cpp:
ubuntu: ros-jazzy-quality-of-service-demo-cpp
quality_of_service_demo_py:
ubuntu: ros-jazzy-quality-of-service-demo-py
topic_monitor:
ubuntu: ros-jazzy-topic-monitor
topic_statistics_demo:
ubuntu: ros-jazzy-topic-statistics-demo
depthai:
ubuntu: ros-jazzy-depthai
depthai-ros:
ubuntu: ros-jazzy-depthai-ros
depthai_bridge:
ubuntu: ros-jazzy-depthai-bridge
depthai_descriptions:
ubuntu: ros-jazzy-depthai-descriptions
depthai_examples:
ubuntu: ros-jazzy-depthai-examples
depthai_filters:
ubuntu: ros-jazzy-depthai-filters
depthai_ros_driver:
ubuntu: ros-jazzy-depthai-ros-driver
depthai_ros_msgs:
ubuntu: ros-jazzy-depthai-ros-msgs
depthimage_to_laserscan:
ubuntu: ros-jazzy-depthimage-to-laserscan
diagnostic_aggregator:
ubuntu: ros-jazzy-diagnostic-aggregator
diagnostic_common_diagnostics:
ubuntu: ros-jazzy-diagnostic-common-diagnostics
diagnostic_updater:
ubuntu: ros-jazzy-diagnostic-updater
diagnostics:
ubuntu: ros-jazzy-diagnostics
self_test:
ubuntu: ros-jazzy-self-test
dolly:
ubuntu: ros-jazzy-dolly
dolly_follow:
ubuntu: ros-jazzy-dolly-follow
dolly_gazebo:
ubuntu: ros-jazzy-dolly-gazebo
dolly_ignition:
ubuntu: ros-jazzy-dolly-ignition
domain_bridge:
ubuntu: ros-jazzy-domain-bridge
dual_laser_merger:
ubuntu: ros-jazzy-dual-laser-merger
dynamixel_hardware:
ubuntu: ros-jazzy-dynamixel-hardware
dynamixel_sdk:
ubuntu: ros-jazzy-dynamixel-sdk
dynamixel_sdk_custom_interfaces:
ubuntu: ros-jazzy-dynamixel-sdk-custom-interfaces
dynamixel_sdk_examples:
ubuntu: ros-jazzy-dynamixel-sdk-examples
dynamixel_workbench:
ubuntu: ros-jazzy-dynamixel-workbench
dynamixel_workbench_toolbox:
ubuntu: ros-jazzy-dynamixel-workbench-toolbox
dynamixel_workbench_msgs:
ubuntu: ros-jazzy-dynamixel-workbench-msgs
ecal:
ubuntu: ros-jazzy-ecal
ecl_command_line:
ubuntu: ros-jazzy-ecl-command-line
ecl_concepts:
ubuntu: ros-jazzy-ecl-concepts
ecl_containers:
ubuntu: ros-jazzy-ecl-containers
ecl_converters:
ubuntu: ros-jazzy-ecl-converters
ecl_core:
ubuntu: ros-jazzy-ecl-core
ecl_core_apps:
ubuntu: ros-jazzy-ecl-core-apps
ecl_devices:
ubuntu: ros-jazzy-ecl-devices
ecl_eigen:
ubuntu: ros-jazzy-ecl-eigen
ecl_exceptions:
ubuntu: ros-jazzy-ecl-exceptions
ecl_filesystem:
ubuntu: ros-jazzy-ecl-filesystem
ecl_formatters:
ubuntu: ros-jazzy-ecl-formatters
ecl_geometry:
ubuntu: ros-jazzy-ecl-geometry
ecl_ipc:
ubuntu: ros-jazzy-ecl-ipc
ecl_linear_algebra:
ubuntu: ros-jazzy-ecl-linear-algebra
ecl_manipulators:
ubuntu: ros-jazzy-ecl-manipulators
ecl_math:
ubuntu: ros-jazzy-ecl-math
ecl_mobile_robot:
ubuntu: ros-jazzy-ecl-mobile-robot
ecl_mpl:
ubuntu: ros-jazzy-ecl-mpl
ecl_sigslots:
ubuntu: ros-jazzy-ecl-sigslots
ecl_statistics:
ubuntu: ros-jazzy-ecl-statistics
ecl_streams:
ubuntu: ros-jazzy-ecl-streams
ecl_threads:
ubuntu: ros-jazzy-ecl-threads
ecl_time:
ubuntu: ros-jazzy-ecl-time
ecl_type_traits:
ubuntu: ros-jazzy-ecl-type-traits
ecl_utilities:
ubuntu: ros-jazzy-ecl-utilities
ecl_config:
ubuntu: ros-jazzy-ecl-config
ecl_console:
ubuntu: ros-jazzy-ecl-console
ecl_converters_lite:
ubuntu: ros-jazzy-ecl-converters-lite
ecl_errors:
ubuntu: ros-jazzy-ecl-errors
ecl_io:
ubuntu: ros-jazzy-ecl-io
ecl_lite:
ubuntu: ros-jazzy-ecl-lite
ecl_sigslots_lite:
ubuntu: ros-jazzy-ecl-sigslots-lite
ecl_time_lite:
ubuntu: ros-jazzy-ecl-time-lite
ecl_build:
ubuntu: ros-jazzy-ecl-build
ecl_license:
ubuntu: ros-jazzy-ecl-license
ecl_tools:
ubuntu: ros-jazzy-ecl-tools
eigen3_cmake_module:
ubuntu: ros-jazzy-eigen3-cmake-module
eigen_stl_containers:
ubuntu: ros-jazzy-eigen-stl-containers
eigenpy:
ubuntu: ros-jazzy-eigenpy
eiquadprog:
ubuntu: ros-jazzy-eiquadprog
ess_imu_driver2:
ubuntu: ros-jazzy-ess-imu-driver2
etsi_its_cam_coding:
ubuntu: ros-jazzy-etsi-its-cam-coding
etsi_its_cam_conversion:
ubuntu: ros-jazzy-etsi-its-cam-conversion
etsi_its_cam_msgs:
ubuntu: ros-jazzy-etsi-its-cam-msgs
etsi_its_cam_ts_coding:
ubuntu: ros-jazzy-etsi-its-cam-ts-coding
etsi_its_cam_ts_conversion:
ubuntu: ros-jazzy-etsi-its-cam-ts-conversion
etsi_its_cam_ts_msgs:
ubuntu: ros-jazzy-etsi-its-cam-ts-msgs
etsi_its_coding:
ubuntu: ros-jazzy-etsi-its-coding
etsi_its_conversion:
ubuntu: ros-jazzy-etsi-its-conversion
etsi_its_cpm_ts_coding:
ubuntu: ros-jazzy-etsi-its-cpm-ts-coding
etsi_its_cpm_ts_conversion:
ubuntu: ros-jazzy-etsi-its-cpm-ts-conversion
etsi_its_cpm_ts_msgs:
ubuntu: ros-jazzy-etsi-its-cpm-ts-msgs
etsi_its_denm_coding:
ubuntu: ros-jazzy-etsi-its-denm-coding
etsi_its_denm_conversion:
ubuntu: ros-jazzy-etsi-its-denm-conversion
etsi_its_denm_msgs:
ubuntu: ros-jazzy-etsi-its-denm-msgs
etsi_its_mapem_ts_coding:
ubuntu: ros-jazzy-etsi-its-mapem-ts-coding
etsi_its_mapem_ts_conversion:
ubuntu: ros-jazzy-etsi-its-mapem-ts-conversion
etsi_its_mapem_ts_msgs:
ubuntu: ros-jazzy-etsi-its-mapem-ts-msgs
etsi_its_messages:
ubuntu: ros-jazzy-etsi-its-messages
etsi_its_msgs:
ubuntu: ros-jazzy-etsi-its-msgs
etsi_its_msgs_utils:
ubuntu: ros-jazzy-etsi-its-msgs-utils
etsi_its_primitives_conversion:
ubuntu: ros-jazzy-etsi-its-primitives-conversion
etsi_its_rviz_plugins:
ubuntu: ros-jazzy-etsi-its-rviz-plugins
etsi_its_spatem_ts_coding:
ubuntu: ros-jazzy-etsi-its-spatem-ts-coding
etsi_its_spatem_ts_conversion:
ubuntu: ros-jazzy-etsi-its-spatem-ts-conversion
etsi_its_spatem_ts_msgs:
ubuntu: ros-jazzy-etsi-its-spatem-ts-msgs
etsi_its_vam_ts_coding:
ubuntu: ros-jazzy-etsi-its-vam-ts-coding
etsi_its_vam_ts_conversion:
ubuntu: ros-jazzy-etsi-its-vam-ts-conversion
etsi_its_vam_ts_msgs:
ubuntu: ros-jazzy-etsi-its-vam-ts-msgs
event_camera_codecs:
ubuntu: ros-jazzy-event-camera-codecs
event_camera_msgs:
ubuntu: ros-jazzy-event-camera-msgs
event_camera_py:
ubuntu: ros-jazzy-event-camera-py
event_camera_renderer:
ubuntu: ros-jazzy-event-camera-renderer
example_interfaces:
ubuntu: ros-jazzy-example-interfaces
examples_rclcpp_async_client:
ubuntu: ros-jazzy-examples-rclcpp-async-client
examples_rclcpp_cbg_executor:
ubuntu: ros-jazzy-examples-rclcpp-cbg-executor
examples_rclcpp_minimal_action_client:
ubuntu: ros-jazzy-examples-rclcpp-minimal-action-client
examples_rclcpp_minimal_action_server:
ubuntu: ros-jazzy-examples-rclcpp-minimal-action-server
examples_rclcpp_minimal_client:
ubuntu: ros-jazzy-examples-rclcpp-minimal-client
examples_rclcpp_minimal_composition:
ubuntu: ros-jazzy-examples-rclcpp-minimal-composition
examples_rclcpp_minimal_publisher:
ubuntu: ros-jazzy-examples-rclcpp-minimal-publisher
examples_rclcpp_minimal_service:
ubuntu: ros-jazzy-examples-rclcpp-minimal-service
examples_rclcpp_minimal_subscriber:
ubuntu: ros-jazzy-examples-rclcpp-minimal-subscriber
examples_rclcpp_minimal_timer:
ubuntu: ros-jazzy-examples-rclcpp-minimal-timer
examples_rclcpp_multithreaded_executor:
ubuntu: ros-jazzy-examples-rclcpp-multithreaded-executor
examples_rclcpp_wait_set:
ubuntu: ros-jazzy-examples-rclcpp-wait-set
examples_rclpy_executors:
ubuntu: ros-jazzy-examples-rclpy-executors
examples_rclpy_guard_conditions:
ubuntu: ros-jazzy-examples-rclpy-guard-conditions
examples_rclpy_minimal_action_client:
ubuntu: ros-jazzy-examples-rclpy-minimal-action-client
examples_rclpy_minimal_action_server:
ubuntu: ros-jazzy-examples-rclpy-minimal-action-server
examples_rclpy_minimal_client:
ubuntu: ros-jazzy-examples-rclpy-minimal-client
examples_rclpy_minimal_publisher:
ubuntu: ros-jazzy-examples-rclpy-minimal-publisher
examples_rclpy_minimal_service:
ubuntu: ros-jazzy-examples-rclpy-minimal-service
examples_rclpy_minimal_subscriber:
ubuntu: ros-jazzy-examples-rclpy-minimal-subscriber
examples_rclpy_pointcloud_publisher:
ubuntu: ros-jazzy-examples-rclpy-pointcloud-publisher
launch_testing_examples:
ubuntu: ros-jazzy-launch-testing-examples
fastcdr:
ubuntu: ros-jazzy-fastcdr
fastrtps:
ubuntu: ros-jazzy-fastrtps
feetech_ros2_driver:
ubuntu: ros-jazzy-feetech-ros2-driver
ffmpeg_encoder_decoder:
ubuntu: ros-jazzy-ffmpeg-encoder-decoder
ffmpeg_image_transport:
ubuntu: ros-jazzy-ffmpeg-image-transport
ffmpeg_image_transport_msgs:
ubuntu: ros-jazzy-ffmpeg-image-transport-msgs
ffmpeg_image_transport_tools:
ubuntu: ros-jazzy-ffmpeg-image-transport-tools
fields2cover:
ubuntu: ros-jazzy-fields2cover
filters:
ubuntu: ros-jazzy-filters
find_object_2d:
ubuntu: ros-jazzy-find-object-2d
flex_sync:
ubuntu: ros-jazzy-flex-sync
flexbe_behavior_engine:
ubuntu: ros-jazzy-flexbe-behavior-engine
flexbe_core:
ubuntu: ros-jazzy-flexbe-core
flexbe_input:
ubuntu: ros-jazzy-flexbe-input
flexbe_mirror:
ubuntu: ros-jazzy-flexbe-mirror
flexbe_msgs:
ubuntu: ros-jazzy-flexbe-msgs
flexbe_onboard:
ubuntu: ros-jazzy-flexbe-onboard
flexbe_states:
ubuntu: ros-jazzy-flexbe-states
flexbe_testing:
ubuntu: ros-jazzy-flexbe-testing
flexbe_widget:
ubuntu: ros-jazzy-flexbe-widget
flir_camera_description:
ubuntu: ros-jazzy-flir-camera-description
flir_camera_msgs:
ubuntu: ros-jazzy-flir-camera-msgs
spinnaker_camera_driver:
ubuntu: ros-jazzy-spinnaker-camera-driver
spinnaker_synchronized_camera_driver:
ubuntu: ros-jazzy-spinnaker-synchronized-camera-driver
fluent_rviz:
ubuntu: ros-jazzy-fluent-rviz
fmi_adapter:
ubuntu: ros-jazzy-fmi-adapter
fmi_adapter_examples:
ubuntu: ros-jazzy-fmi-adapter-examples
fmilibrary_vendor:
ubuntu: ros-jazzy-fmilibrary-vendor
foonathan_memory_vendor:
ubuntu: ros-jazzy-foonathan-memory-vendor
four_wheel_steering_msgs:
ubuntu: ros-jazzy-four-wheel-steering-msgs
foxglove_bridge:
ubuntu: ros-jazzy-foxglove-bridge
foxglove_compressed_video_transport:
ubuntu: ros-jazzy-foxglove-compressed-video-transport
foxglove_msgs:
ubuntu: ros-jazzy-foxglove-msgs
fuse:
ubuntu: ros-jazzy-fuse
fuse_constraints:
ubuntu: ros-jazzy-fuse-constraints
fuse_core:
ubuntu: ros-jazzy-fuse-core
fuse_doc:
ubuntu: ros-jazzy-fuse-doc
fuse_graphs:
ubuntu: ros-jazzy-fuse-graphs
fuse_loss:
ubuntu: ros-jazzy-fuse-loss
fuse_models:
ubuntu: ros-jazzy-fuse-models
fuse_msgs:
ubuntu: ros-jazzy-fuse-msgs
fuse_optimizers:
ubuntu: ros-jazzy-fuse-optimizers
fuse_publishers:
ubuntu: ros-jazzy-fuse-publishers
fuse_tutorials:
ubuntu: ros-jazzy-fuse-tutorials
fuse_variables:
ubuntu: ros-jazzy-fuse-variables
fuse_viz:
ubuntu: ros-jazzy-fuse-viz
game_controller_spl:
ubuntu: ros-jazzy-game-controller-spl
game_controller_spl_interfaces:
ubuntu: ros-jazzy-game-controller-spl-interfaces
gc_spl:
ubuntu: ros-jazzy-gc-spl
gc_spl_2022:
ubuntu: ros-jazzy-gc-spl-2022
gc_spl_interfaces:
ubuntu: ros-jazzy-gc-spl-interfaces
rcgcd_spl_14:
ubuntu: ros-jazzy-rcgcd-spl-14
rcgcd_spl_14_conversion:
ubuntu: ros-jazzy-rcgcd-spl-14-conversion
rcgcrd_spl_4:
ubuntu: ros-jazzy-rcgcrd-spl-4
rcgcrd_spl_4_conversion:
ubuntu: ros-jazzy-rcgcrd-spl-4-conversion
gazebo_msgs:
ubuntu: ros-jazzy-gazebo-msgs
cmake_generate_parameter_module_example:
ubuntu: ros-jazzy-cmake-generate-parameter-module-example
generate_parameter_library:
ubuntu: ros-jazzy-generate-parameter-library
generate_parameter_library_example:
ubuntu: ros-jazzy-generate-parameter-library-example
generate_parameter_library_py:
ubuntu: ros-jazzy-generate-parameter-library-py
generate_parameter_module_example:
ubuntu: ros-jazzy-generate-parameter-module-example
parameter_traits:
ubuntu: ros-jazzy-parameter-traits
geodesy:
ubuntu: ros-jazzy-geodesy
geographic_info:
ubuntu: ros-jazzy-geographic-info
geographic_msgs:
ubuntu: ros-jazzy-geographic-msgs
geometric_shapes:
ubuntu: ros-jazzy-geometric-shapes
examples_tf2_py:
ubuntu: ros-jazzy-examples-tf2-py
geometry2:
ubuntu: ros-jazzy-geometry2
tf2:
ubuntu: ros-jazzy-tf2
tf2_bullet:
ubuntu: ros-jazzy-tf2-bullet
tf2_eigen:
ubuntu: ros-jazzy-tf2-eigen
tf2_eigen_kdl:
ubuntu: ros-jazzy-tf2-eigen-kdl
tf2_geometry_msgs:
ubuntu: ros-jazzy-tf2-geometry-msgs
tf2_kdl:
ubuntu: ros-jazzy-tf2-kdl
tf2_msgs:
ubuntu: ros-jazzy-tf2-msgs
tf2_py:
ubuntu: ros-jazzy-tf2-py
tf2_ros:
ubuntu: ros-jazzy-tf2-ros
tf2_ros_py:
ubuntu: ros-jazzy-tf2-ros-py
tf2_sensor_msgs:
ubuntu: ros-jazzy-tf2-sensor-msgs
tf2_tools:
ubuntu: ros-jazzy-tf2-tools
geometry_tutorials:
ubuntu: ros-jazzy-geometry-tutorials
turtle_tf2_cpp:
ubuntu: ros-jazzy-turtle-tf2-cpp
turtle_tf2_py:
ubuntu: ros-jazzy-turtle-tf2-py
google_benchmark_vendor:
ubuntu: ros-jazzy-google-benchmark-vendor
gmock_vendor:
ubuntu: ros-jazzy-gmock-vendor
gtest_vendor:
ubuntu: ros-jazzy-gtest-vendor
gps_msgs:
ubuntu: ros-jazzy-gps-msgs
gps_tools:
ubuntu: ros-jazzy-gps-tools
gps_umd:
ubuntu: ros-jazzy-gps-umd
gpsd_client:
ubuntu: ros-jazzy-gpsd-client
graph_msgs:
ubuntu: ros-jazzy-graph-msgs
grasping_msgs:
ubuntu: ros-jazzy-grasping-msgs
grbl_msgs:
ubuntu: ros-jazzy-grbl-msgs
grbl_ros:
ubuntu: ros-jazzy-grbl-ros
grid_map:
ubuntu: ros-jazzy-grid-map
grid_map_cmake_helpers:
ubuntu: ros-jazzy-grid-map-cmake-helpers
grid_map_core:
ubuntu: ros-jazzy-grid-map-core
grid_map_costmap_2d:
ubuntu: ros-jazzy-grid-map-costmap-2d
grid_map_cv:
ubuntu: ros-jazzy-grid-map-cv
grid_map_demos:
ubuntu: ros-jazzy-grid-map-demos
grid_map_filters:
ubuntu: ros-jazzy-grid-map-filters
grid_map_loader:
ubuntu: ros-jazzy-grid-map-loader
grid_map_msgs:
ubuntu: ros-jazzy-grid-map-msgs
grid_map_octomap:
ubuntu: ros-jazzy-grid-map-octomap
grid_map_pcl:
ubuntu: ros-jazzy-grid-map-pcl
grid_map_ros:
ubuntu: ros-jazzy-grid-map-ros
grid_map_rviz_plugin:
ubuntu: ros-jazzy-grid-map-rviz-plugin
grid_map_sdf:
ubuntu: ros-jazzy-grid-map-sdf
grid_map_visualization:
ubuntu: ros-jazzy-grid-map-visualization
gscam:
ubuntu: ros-jazzy-gscam
gtsam:
ubuntu: ros-jazzy-gtsam
gz_cmake_vendor:
ubuntu: ros-jazzy-gz-cmake-vendor
gz_common_vendor:
ubuntu: ros-jazzy-gz-common-vendor
gz_dartsim_vendor:
ubuntu: ros-jazzy-gz-dartsim-vendor
gz_fuel_tools_vendor:
ubuntu: ros-jazzy-gz-fuel-tools-vendor
gz_gui_vendor:
ubuntu: ros-jazzy-gz-gui-vendor
gz_launch_vendor:
ubuntu: ros-jazzy-gz-launch-vendor
gz_math_vendor:
ubuntu: ros-jazzy-gz-math-vendor
gz_msgs_vendor:
ubuntu: ros-jazzy-gz-msgs-vendor
gz_ogre_next_vendor:
ubuntu: ros-jazzy-gz-ogre-next-vendor
gz_physics_vendor:
ubuntu: ros-jazzy-gz-physics-vendor
gz_plugin_vendor:
ubuntu: ros-jazzy-gz-plugin-vendor
gz_rendering_vendor:
ubuntu: ros-jazzy-gz-rendering-vendor
gz_ros2_control:
ubuntu: ros-jazzy-gz-ros2-control
gz_ros2_control_demos:
ubuntu: ros-jazzy-gz-ros2-control-demos
gz_sensors_vendor:
ubuntu: ros-jazzy-gz-sensors-vendor
gz_sim_vendor:
ubuntu: ros-jazzy-gz-sim-vendor
gz_tools_vendor:
ubuntu: ros-jazzy-gz-tools-vendor
gz_transport_vendor:
ubuntu: ros-jazzy-gz-transport-vendor
gz_utils_vendor:
ubuntu: ros-jazzy-gz-utils-vendor
hash_library_vendor:
ubuntu: ros-jazzy-hash-library-vendor
hatchbed_common:
ubuntu: ros-jazzy-hatchbed-common
heaphook:
ubuntu: ros-jazzy-heaphook
hector_rviz_overlay:
ubuntu: ros-jazzy-hector-rviz-overlay
hls_lfcd_lds_driver:
ubuntu: ros-jazzy-hls-lfcd-lds-driver
hpp-fcl:
ubuntu: ros-jazzy-hpp-fcl
iceoryx_binding_c:
ubuntu: ros-jazzy-iceoryx-binding-c
iceoryx_hoofs:
ubuntu: ros-jazzy-iceoryx-hoofs
iceoryx_introspection:
ubuntu: ros-jazzy-iceoryx-introspection
iceoryx_posh:
ubuntu: ros-jazzy-iceoryx-posh
ifm3d_core:
ubuntu: ros-jazzy-ifm3d-core