-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
distribution.yaml
13393 lines (13393 loc) · 366 KB
/
distribution.yaml
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
%YAML 1.1
# ROS distribution file
# see REP 143: http://ros.org/reps/rep-0143.html
---
release_platforms:
ubuntu:
- focal
repositories:
abb_driver:
doc:
type: git
url: https://github.com/ros-industrial/abb_driver.git
version: kinetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-industrial-release/abb_driver-release.git
version: 1.4.0-1
source:
type: git
url: https://github.com/ros-industrial/abb_driver.git
version: kinetic-devel
status: maintained
abb_robot_driver_interfaces:
doc:
type: git
url: https://github.com/ros-industrial/abb_robot_driver_interfaces.git
version: master
release:
packages:
- abb_egm_msgs
- abb_rapid_msgs
- abb_rapid_sm_addin_msgs
- abb_robot_msgs
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-industrial-release/abb_robot_driver_interfaces-release.git
version: 0.5.2-1
source:
type: git
url: https://github.com/ros-industrial/abb_robot_driver_interfaces.git
version: master
status: developed
ackermann_msgs:
doc:
type: git
url: https://github.com/ros-drivers/ackermann_msgs.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-drivers-gbp/ackermann_msgs-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/ros-drivers/ackermann_msgs.git
version: master
status: maintained
actionlib:
doc:
type: git
url: https://github.com/ros/actionlib.git
version: noetic-devel
release:
packages:
- actionlib
- actionlib_tools
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/actionlib-release.git
version: 1.14.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/actionlib.git
version: noetic-devel
status: maintained
adi_3dtof_image_stitching:
doc:
type: git
url: https://github.com/analogdevicesinc/adi_3dtof_image_stitching.git
version: noetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/raebelchristo-adi/adi_3dtof_image_stitching-release.git
version: 1.1.0-2
source:
type: git
url: https://github.com/analogdevicesinc/adi_3dtof_image_stitching.git
version: noetic-devel
status: maintained
adi_tmc_coe:
doc:
type: git
url: https://github.com/analogdevicesinc/adi_tmc_coe.git
version: noetic
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros2-gbp/adi_tmcl_coe-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/analogdevicesinc/adi_tmc_coe.git
version: noetic
status: maintained
adi_tmcl:
doc:
type: git
url: https://github.com/analogdevicesinc/tmcl_ros.git
version: noetic
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros2-gbp/adi_tmcl-release.git
version: 4.0.2-2
source:
type: git
url: https://github.com/analogdevicesinc/tmcl_ros.git
version: noetic
status: maintained
agni_tf_tools:
doc:
type: git
url: https://github.com/ubi-agni/agni_tf_tools.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ubi-agni-gbp/agni_tf_tools-release.git
version: 0.1.6-1
source:
type: git
url: https://github.com/ubi-agni/agni_tf_tools.git
version: master
status: maintained
ainstein_radar:
source:
type: git
url: https://github.com/AinsteinAI/ainstein_radar.git
version: master
status: maintained
amr_interop_bridge:
doc:
type: git
url: https://github.com/LexxPluss/amr_interop_bridge.git
version: main
source:
type: git
url: https://github.com/LexxPluss/amr_interop_bridge.git
version: main
status: developed
angles:
doc:
type: git
url: https://github.com/ros/angles.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/geometry_angles_utils-release.git
version: 1.9.13-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/angles.git
version: master
status: maintained
app_manager:
doc:
type: git
url: https://github.com/pr2/app_manager.git
version: kinetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/app_manager-release.git
version: 1.3.0-1
source:
type: git
url: https://github.com/pr2/app_manager.git
version: kinetic-devel
status: unmaintained
apriltag:
doc:
type: git
url: https://github.com/AprilRobotics/apriltag.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/AprilRobotics/apriltag-release.git
version: 3.2.0-1
source:
type: git
url: https://github.com/aprilrobotics/apriltag.git
version: master
status: maintained
apriltag_ros:
doc:
type: git
url: https://github.com/AprilRobotics/apriltag_ros.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/AprilRobotics/apriltag_ros-release.git
version: 3.2.1-3
source:
type: git
url: https://github.com/AprilRobotics/apriltag_ros.git
version: master
status: maintained
arbotix:
doc:
type: git
url: https://github.com/vanadiumlabs/arbotix_ros.git
version: noetic-devel
release:
packages:
- arbotix
- arbotix_controllers
- arbotix_firmware
- arbotix_msgs
- arbotix_python
- arbotix_sensors
tags:
release: release/noetic/{package}/{version}
url: https://github.com/vanadiumlabs/arbotix_ros-release.git
version: 0.11.0-1
source:
type: git
url: https://github.com/vanadiumlabs/arbotix_ros.git
version: noetic-devel
status: maintained
aruco_opencv:
doc:
type: git
url: https://github.com/fictionlab/aruco_opencv.git
version: noetic
release:
packages:
- aruco_opencv
- aruco_opencv_msgs
tags:
release: release/noetic/{package}/{version}
url: https://github.com/fictionlab-gbp/aruco_opencv-release.git
version: 0.4.1-1
source:
type: git
url: https://github.com/fictionlab/aruco_opencv.git
version: noetic
status: developed
aruco_ros:
doc:
type: git
url: https://github.com/pal-robotics/aruco_ros.git
version: noetic-devel
release:
packages:
- aruco
- aruco_msgs
- aruco_ros
tags:
release: release/noetic/{package}/{version}
url: https://github.com/pal-gbp/aruco_ros-release.git
version: 3.1.3-1
source:
type: git
url: https://github.com/pal-robotics/aruco_ros.git
version: noetic-devel
status: developed
astra_ros:
doc:
type: git
url: https://github.com/semio-ai/astra_ros.git
version: master
status: maintained
astrobee:
doc:
type: git
url: https://github.com/nasa/astrobee.git
version: master
astuff_sensor_msgs:
doc:
type: git
url: https://github.com/astuff/astuff_sensor_msgs.git
version: master
release:
packages:
- delphi_esr_msgs
- delphi_mrr_msgs
- delphi_srr_msgs
- derived_object_msgs
- ibeo_msgs
- kartech_linear_actuator_msgs
- mobileye_560_660_msgs
- neobotix_usboard_msgs
- pacmod_msgs
tags:
release: release/noetic/{package}/{version}
url: https://github.com/astuff/astuff_sensor_msgs-release.git
version: 3.3.0-1
source:
type: git
url: https://github.com/astuff/astuff_sensor_msgs.git
version: master
status: maintained
async_comm:
doc:
type: git
url: https://github.com/dpkoch/async_comm.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/dpkoch/async_comm-release.git
version: 0.2.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/dpkoch/async_comm.git
version: master
status: developed
async_web_server_cpp:
doc:
type: git
url: https://github.com/fkie/async_web_server_cpp.git
version: ros1-releases
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/fkie-release/async_web_server_cpp-release.git
version: 1.0.3-1
source:
type: git
url: https://github.com/fkie/async_web_server_cpp.git
version: ros1-develop
status: maintained
atf:
release:
packages:
- atf
- atf_core
- atf_metrics
- atf_msgs
- atf_plotter
- atf_recorder_plugins
- atf_test
- atf_test_tools
tags:
release: release/noetic/{package}/{version}
url: https://github.com/floweisshardt/atf-release.git
version: 0.1.1-1
status: maintained
audibot:
doc:
type: git
url: https://github.com/robustify/audibot.git
version: 0.2.0
release:
packages:
- audibot
- audibot_description
- audibot_gazebo
tags:
release: release/noetic/{package}/{version}
url: https://github.com/robustify/audibot-release.git
version: 0.2.2-5
source:
type: git
url: https://github.com/robustify/audibot.git
version: master
status: maintained
audio_common:
doc:
type: git
url: https://github.com/ros-drivers/audio_common.git
version: master
release:
packages:
- audio_capture
- audio_common
- audio_common_msgs
- audio_play
- sound_play
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/audio_common-release.git
version: 0.3.18-1
source:
type: git
url: https://github.com/ros-drivers/audio_common.git
version: master
status: maintained
automotive_autonomy_msgs:
doc:
type: git
url: https://github.com/astuff/automotive_autonomy_msgs.git
version: master
release:
packages:
- automotive_autonomy_msgs
- automotive_navigation_msgs
- automotive_platform_msgs
tags:
release: release/noetic/{package}/{version}
url: https://github.com/astuff/automotive_autonomy_msgs-release.git
version: 3.0.4-1
source:
type: git
url: https://github.com/astuff/automotive_autonomy_msgs.git
version: master
status: maintained
autoware_msgs:
doc:
type: git
url: https://github.com/autoware-ai/messages.git
version: master
release:
packages:
- autoware_can_msgs
- autoware_config_msgs
- autoware_external_msgs
- autoware_lanelet2_msgs
- autoware_map_msgs
- autoware_msgs
- autoware_system_msgs
- tablet_socket_msgs
- vector_map_msgs
tags:
release: release/noetic/{package}/{version}
url: https://github.com/autoware-ai/messages-release.git
version: 1.14.0-1
source:
type: git
url: https://github.com/autoware-ai/messages.git
version: master
status: end-of-life
auv_msgs:
doc:
type: git
url: https://github.com/oceansystemslab/auv_msgs.git
version: noetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/oceansystemslab/auv_msgs-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/oceansystemslab/auv_msgs.git
version: noetic-devel
status: maintained
avt_vimba_camera:
doc:
type: git
url: https://github.com/astuff/avt_vimba_camera.git
version: ros1_master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/astuff/avt_vimba_camera-release.git
version: 1.2.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/astuff/avt_vimba_camera.git
version: ros1_master
status: maintained
axis_camera:
doc:
type: git
url: https://github.com/ros-drivers/axis_camera.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-drivers-gbp/axis_camera-release.git
version: 0.3.2-1
source:
type: git
url: https://github.com/ros-drivers/axis_camera.git
version: master
status: maintained
azure-iot-sdk-c:
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/nobleo/azure-iot-sdk-c-release.git
version: 1.9.0-1
source:
test_commits: false
type: git
url: https://github.com/Azure/azure-iot-sdk-c.git
version: main
status: maintained
backward_ros:
doc:
type: git
url: https://github.com/pal-robotics/backward_ros.git
version: kinetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/pal-gbp/backward_ros-release.git
version: 0.1.7-1
source:
type: git
url: https://github.com/pal-robotics/backward_ros.git
version: kinetic-devel
status: maintained
bagger:
doc:
type: git
url: https://github.com/squarerobot/bagger.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/squarerobot/bagger-release.git
version: 0.1.5-2
source:
type: git
url: https://github.com/squarerobot/bagger.git
version: master
status: maintained
baldor:
doc:
type: git
url: https://github.com/crigroup/baldor.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/crigroup/baldor-release.git
version: 0.1.3-1
source:
type: git
url: https://github.com/crigroup/baldor.git
version: master
status: maintained
basler_tof:
doc:
type: git
url: https://github.com/uos/basler_tof.git
version: noetic
source:
test_commits: false
type: git
url: https://github.com/uos/basler_tof.git
version: noetic
status: developed
bcr_bot:
doc:
type: git
url: https://github.com/blackcoffeerobotics/bcr_bot.git
version: ros1
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/blackcoffeerobotics/bcr_bot-release.git
version: 0.0.2-1
source:
type: git
url: https://github.com/blackcoffeerobotics/bcr_bot.git
version: ros1
status: developed
behaviortree_cpp_v3:
doc:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: v3.8
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/BehaviorTree/behaviortree_cpp_v3-release.git
version: 3.8.6-1
source:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: v3.8
status: developed
behaviortree_cpp_v4:
doc:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
release:
packages:
- behaviortree_cpp
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros2-gbp/behaviortree_cpp_v4-release.git
version: 4.5.1-1
source:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
status: developed
beluga:
doc:
type: git
url: https://github.com/Ekumen-OS/beluga.git
version: main
release:
packages:
- beluga
- beluga_amcl
- beluga_ros
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros2-gbp/beluga-release.git
version: 2.0.2-1
source:
test_commits: false
test_pull_requests: false
type: git
url: https://github.com/Ekumen-OS/beluga.git
version: main
status: developed
bond_core:
doc:
type: git
url: https://github.com/ros/bond_core.git
version: kinetic-devel
release:
packages:
- bond
- bond_core
- bondcpp
- bondpy
- smclib
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/bond_core-release.git
version: 1.8.6-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/bond_core.git
version: kinetic-devel
status: maintained
boost_plugin_loader:
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/tesseract-robotics-release/boost_plugin_loader-release.git
version: 0.2.2-1
source:
type: git
url: https://github.com/tesseract-robotics/boost_plugin_loader.git
version: main
status: developed
boost_sml:
doc:
type: git
url: https://github.com/PickNikRobotics/boost_sml.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/PickNikRobotics/boost_sml-release.git
version: 0.1.2-1
source:
type: git
url: https://github.com/PickNikRobotics/boost_sml.git
version: master
status: developed
bota_driver:
doc:
type: git
url: https://gitlab.com/botasys/bota_driver.git
version: master
release:
packages:
- bota_driver
- bota_driver_testing
- bota_node
- bota_signal_handler
- bota_worker
- rokubimini
- rokubimini_bus_manager
- rokubimini_description
- rokubimini_ethercat
- rokubimini_msgs
- rokubimini_serial
tags:
release: release/noetic/{package}/{version}
url: https://gitlab.com/botasys/bota_driver-release.git
version: 0.6.1-2
source:
type: git
url: https://gitlab.com/botasys/bota_driver.git
version: noetic-devel
status: developed
calibration:
doc:
type: git
url: https://github.com/ros-perception/calibration.git
version: noetic-devel
release:
packages:
- calibration
- calibration_estimation
- calibration_launch
- calibration_msgs
- calibration_setup_helper
- image_cb_detector
- interval_intersection
- joint_states_settler
- laser_cb_detector
- monocam_settler
- settlerlib
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/calibration-release.git
version: 0.10.15-1
source:
type: git
url: https://github.com/ros-perception/calibration.git
version: noetic-devel
status: maintained
cam2lidar:
source:
type: git
url: https://github.com/up2metric/cam2lidar.git
version: main
status: maintained
camera_aravis:
doc:
type: git
url: https://github.com/FraunhoferIOSB/camera_aravis.git
version: noetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/FraunhoferIOSB/camera_aravis-release.git
version: 4.1.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/FraunhoferIOSB/camera_aravis.git
version: noetic-devel
status: maintained
capabilities:
doc:
type: git
url: https://github.com/osrf/capabilities.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/capabilities-release.git
version: 0.3.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/osrf/capabilities.git
version: master
status: maintained
care-o-bot:
doc:
type: git
url: https://github.com/ipa320/care-o-bot.git
version: kinetic_dev
release:
packages:
- care_o_bot
- care_o_bot_desktop
- care_o_bot_robot
- care_o_bot_simulation
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ipa320/care-o-bot-release.git
version: 0.7.11-1
source:
type: git
url: https://github.com/ipa320/care-o-bot.git
version: kinetic_dev
status: end-of-life
carla_msgs:
doc:
type: git
url: https://github.com/carla-simulator/ros-carla-msgs.git
version: release
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/carla-simulator/ros-carla-msgs-release.git
version: 1.3.0-1
source:
type: git
url: https://github.com/carla-simulator/ros-carla-msgs.git
version: release
status: developed
cartesian_control_msgs:
doc:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_ROS_cartesian_control_msgs.git
version: main
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/UniversalRobots/Universal_Robots_ROS_cartesian_control_msgs-release.git
version: 0.1.0-1
source:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_ROS_cartesian_control_msgs.git
version: main
status: developed
cartesian_msgs:
doc:
type: git
url: https://github.com/PickNikRobotics/cartesian_msgs.git
version: jade-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/PickNikRobotics/cartesian_msgs-release.git
version: 0.0.3-1
source:
type: git
url: https://github.com/PickNikRobotics/cartesian_msgs.git
version: jade-devel
catch_ros:
doc:
type: git
url: https://github.com/AIS-Bonn/catch_ros.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/AIS-Bonn/catch_ros-release.git
version: 0.5.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/AIS-Bonn/catch_ros.git
version: master
status: maintained
catkin:
doc:
type: git
url: https://github.com/ros/catkin.git
version: noetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/catkin-release.git
version: 0.8.10-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/catkin.git
version: noetic-devel
status: maintained
catkin_lint_cmake:
source:
test_pull_requests: true
type: git
url: https://github.com/tue-robotics/catkin_lint_cmake.git
version: master
status: maintained
catkin_virtualenv:
doc:
type: git
url: https://github.com/locusrobotics/catkin_virtualenv.git
version: master
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/locusrobotics/catkin_virtualenv-release.git
version: 0.6.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/locusrobotics/catkin_virtualenv.git
version: master
status: maintained
cedri_node_monitoring:
doc:
type: git
url: https://github.com/alf767443/node_monitoring.git
version: main
source:
type: git
url: https://github.com/alf767443/node_monitoring.git
version: main
status: developed
cedri_ros_monitoring:
doc:
type: git
url: https://github.com/alf767443/ros_monitoring.git
version: main
source:
type: git
url: https://github.com/alf767443/ros_monitoring.git
version: main
status: developed
class_loader:
doc:
type: git
url: https://github.com/ros/class_loader.git
version: noetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/ros-gbp/class_loader-release.git
version: 0.5.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/class_loader.git
version: noetic-devel
status: maintained
clearpath_msgs:
doc:
type: git
url: https://github.com/clearpathrobotics/clearpath_msgs.git
version: noetic-devel
release:
packages:
- clearpath_configuration_msgs
- clearpath_control_msgs
- clearpath_dock_msgs
- clearpath_localization_msgs
- clearpath_mission_manager_msgs
- clearpath_mission_scheduler_msgs
- clearpath_msgs
- clearpath_navigation_msgs
- clearpath_platform_msgs
- clearpath_safety_msgs
tags:
release: release/noetic/{package}/{version}
url: https://github.com/clearpath-gbp/clearpath_msgs-release.git
version: 0.9.5-1
source:
type: git
url: https://github.com/clearpathrobotics/clearpath_msgs.git
version: noetic-devel
status: maintained
clearpath_onav_examples:
doc:
type: git
url: https://github.com/cpr-application/clearpath_onav_examples.git
version: main
release:
packages:
- clearpath_onav_api_examples
- clearpath_onav_api_examples_lib
- clearpath_onav_examples
tags:
release: release/noetic/{package}/{version}
url: https://github.com/clearpath-gbp/clearpath_onav_examples-release.git
version: 0.0.4-1
source:
type: git
url: https://github.com/cpr-application/clearpath_onav_examples.git
version: main
status: maintained
clober:
doc:
type: git
url: https://github.com/CLOBOT-Co-Ltd/clober.git
version: noetic-devel
source:
type: git
url: https://github.com/CLOBOT-Co-Ltd/clober.git
version: noetic-devel
status: developed
clober_msgs:
doc:
type: git
url: https://github.com/CLOBOT-Co-Ltd/clober_msgs.git
version: noetic-devel
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/CLOBOT-Co-Ltd-release/clober_msgs-release.git
version: 1.0.1-1
source:
type: git
url: https://github.com/CLOBOT-Co-Ltd/clober_msgs.git
version: noetic-devel
status: developed
clpe_ros:
doc:
type: git
url: https://github.com/canlab-co/clpe_ros.git
version: noetic
release:
tags:
release: release/noetic/{package}/{version}
url: https://github.com/canlab-co/clpe_ros-ros-release.git
version: 0.1.1-1
source:
test_pull_requests: true
type: git