-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
distribution.yaml
executable file
·12413 lines (12413 loc) · 339 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:
debian:
- stretch
ubuntu:
- bionic
repositories:
abb:
release:
packages:
- abb
- abb_driver
- abb_irb2400_moveit_config
- abb_irb2400_moveit_plugins
- abb_irb2400_support
- abb_irb4400_support
- abb_irb5400_support
- abb_irb6600_support
- abb_irb6640_moveit_config
- abb_irb6640_support
- abb_resources
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-industrial-release/abb-release.git
version: 1.3.1-1
status: maintained
abb_driver:
doc:
type: git
url: https://github.com/ros-industrial/abb_driver.git
version: kinetic-devel
source:
type: git
url: https://github.com/ros-industrial/abb_driver.git
version: kinetic-devel
status: maintained
abseil_cpp:
doc:
type: git
url: https://github.com/Eurecat/abseil-cpp.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/Eurecat/abseil_cpp-release.git
version: 0.4.2-1
source:
type: git
url: https://github.com/Eurecat/abseil-cpp.git
version: master
status: developed
acado:
doc:
type: git
url: https://github.com/tud-cor/acado.git
version: tudelft-stable
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/tud-cor/acado-release.git
version: 1.2.3-0
source:
type: git
url: https://github.com/tud-cor/acado.git
version: tudelft-stable
ackermann_msgs:
doc:
type: git
url: https://github.com/ros-drivers/ackermann_msgs.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-drivers-gbp/ackermann_msgs-release.git
version: 1.0.1-0
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: melodic-devel
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/actionlib-release.git
version: 1.12.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/actionlib.git
version: melodic-devel
status: maintained
adi_driver:
doc:
type: git
url: https://github.com/tork-a/adi_driver.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/tork-a/adi_driver-release.git
version: 1.0.3-0
source:
type: git
url: https://github.com/tork-a/adi_driver.git
version: master
status: developed
agni_tf_tools:
doc:
type: git
url: https://github.com/ubi-agni/agni_tf_tools.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ubi-agni-gbp/agni_tf_tools-release.git
version: 0.1.5-1
source:
type: git
url: https://github.com/ubi-agni/agni_tf_tools.git
version: master
status: maintained
ainstein_radar:
release:
packages:
- ainstein_radar
- ainstein_radar_drivers
- ainstein_radar_filters
- ainstein_radar_gazebo_plugins
- ainstein_radar_msgs
- ainstein_radar_rviz_plugins
- ainstein_radar_tools
tags:
release: release/melodic/{package}/{version}
url: https://github.com/AinsteinAI/ainstein_radar-release.git
version: 2.0.2-1
source:
type: git
url: https://github.com/AinsteinAI/ainstein_radar.git
version: master
status: maintained
angles:
doc:
type: git
url: https://github.com/ros/angles.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/geometry_angles_utils-release.git
version: 1.9.12-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/melodic/{package}/{version}
url: https://github.com/ros-gbp/app_manager-release.git
version: 1.1.1-1
source:
type: git
url: https://github.com/pr2/app_manager.git
version: kinetic-devel
status: unmaintained
apriltag:
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/AprilRobotics/apriltag-release.git
version: 3.1.1-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/melodic/{package}/{version}
url: https://github.com/AprilRobotics/apriltag_ros-release.git
version: 3.1.1-1
source:
type: git
url: https://github.com/AprilRobotics/apriltag_ros.git
version: master
status: maintained
ar_track_alvar:
doc:
type: git
url: https://github.com/ros-perception/ar_track_alvar.git
version: kinetic-devel
release:
packages:
- ar_track_alvar
- ar_track_alvar_msgs
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/ar_track_alvar-release.git
version: 0.7.1-0
source:
type: git
url: https://github.com/ros-perception/ar_track_alvar.git
version: kinetic-devel
status: maintained
arbotix:
doc:
type: git
url: https://github.com/vanadiumlabs/arbotix_ros.git
version: indigo-devel
release:
packages:
- arbotix
- arbotix_controllers
- arbotix_firmware
- arbotix_msgs
- arbotix_python
- arbotix_sensors
tags:
release: release/melodic/{package}/{version}
url: https://github.com/vanadiumlabs/arbotix_ros-release.git
version: 0.10.0-0
source:
type: git
url: https://github.com/vanadiumlabs/arbotix_ros.git
version: indigo-devel
status: maintained
ariles_ros:
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/asherikov/ariles-release.git
version: 1.3.2-1
status: developed
asr_aruco_marker_recognition:
doc:
type: git
url: https://github.com/asr-ros/asr_aruco_marker_recognition.git
version: master
asr_calibration_tool_dome:
doc:
type: git
url: https://github.com/asr-ros/asr_calibration_tool_dome.git
version: master
asr_cyberglove_lib:
doc:
type: git
url: https://github.com/asr-ros/asr_cyberglove_lib.git
version: master
asr_cyberglove_visualization:
doc:
type: git
url: https://github.com/asr-ros/asr_cyberglove_visualization.git
version: master
asr_descriptor_surface_based_recognition:
doc:
type: git
url: https://github.com/asr-ros/asr_descriptor_surface_based_recognition.git
version: master
asr_direct_search_manager:
doc:
depends:
- asr_msgs
type: git
url: https://github.com/asr-ros/asr_direct_search_manager.git
version: master
asr_fake_object_recognition:
doc:
type: git
url: https://github.com/asr-ros/asr_fake_object_recognition.git
version: master
asr_flir_ptu_controller:
doc:
type: git
url: https://github.com/asr-ros/asr_flir_ptu_controller.git
version: master
asr_flir_ptu_driver:
doc:
type: git
url: https://github.com/asr-ros/asr_flir_ptu_driver.git
version: master
asr_flock_of_birds:
doc:
type: git
url: https://github.com/asr-ros/asr_flock_of_birds.git
version: master
asr_flock_of_birds_tracking:
doc:
type: git
url: https://github.com/asr-ros/asr_flock_of_birds_tracking.git
version: master
asr_ftc_local_planner:
doc:
type: git
url: https://github.com/asr-ros/asr_ftc_local_planner.git
version: melodic
asr_gazebo_models:
doc:
type: git
url: https://github.com/asr-ros/asr_gazebo_models.git
version: master
asr_grid_creator:
doc:
type: git
url: https://github.com/asr-ros/asr_grid_creator.git
version: master
asr_halcon_bridge:
doc:
type: git
url: https://github.com/asr-ros/asr_halcon_bridge.git
version: master
asr_intermediate_object_generator:
doc:
type: git
url: https://github.com/asr-ros/asr_intermediate_object_generator.git
version: master
asr_ism:
doc:
type: git
url: https://github.com/asr-ros/asr_ism.git
version: master
asr_ism_visualizations:
doc:
type: git
url: https://github.com/asr-ros/asr_ism_visualizations.git
version: master
asr_ivt:
doc:
type: git
url: https://github.com/asr-ros/asr_ivt.git
version: master
asr_ivt_bridge:
doc:
type: git
url: https://github.com/asr-ros/asr_ivt_bridge.git
version: master
asr_kinematic_chain_dome:
doc:
type: git
url: https://github.com/asr-ros/asr_kinematic_chain_dome.git
version: master
asr_kinematic_chain_optimizer:
doc:
type: git
url: https://github.com/asr-ros/asr_kinematic_chain_optimizer.git
version: master
asr_lib_ism:
doc:
type: git
url: https://github.com/asr-ros/asr_lib_ism.git
version: master
asr_lib_pose_prediction_ism:
doc:
type: git
url: https://github.com/asr-ros/asr_lib_pose_prediction_ism.git
version: master
asr_mild_base_driving:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_base_driving.git
version: master
asr_mild_base_fake_driving:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_base_fake_driving.git
version: master
asr_mild_base_laserscanner:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_base_laserscanner.git
version: master
asr_mild_base_launch_files:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_base_launch_files.git
version: master
asr_mild_calibration_tool:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_calibration_tool.git
version: master
asr_mild_kinematic_chain:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_kinematic_chain.git
version: master
asr_mild_navigation:
doc:
type: git
url: https://github.com/asr-ros/asr_mild_navigation.git
version: master
asr_msgs:
doc:
type: git
url: https://github.com/asr-ros/asr_msgs.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/asr-ros/asr_msgs-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/asr-ros/asr_msgs.git
version: master
asr_navfn:
doc:
type: git
url: https://github.com/asr-ros/asr_navfn.git
version: melodic
asr_next_best_view:
doc:
depends:
- asr_msgs
type: git
url: https://github.com/asr-ros/asr_next_best_view.git
version: melodic
asr_object_database:
doc:
type: git
url: https://github.com/asr-ros/asr_object_database.git
version: master
asr_psm:
doc:
type: git
url: https://github.com/asr-ros/asr_psm.git
version: master
asr_psm_visualizations:
doc:
type: git
url: https://github.com/asr-ros/asr_psm_visualizations.git
version: master
asr_rapidxml:
doc:
type: git
url: https://github.com/asr-ros/asr_rapidxml.git
version: master
asr_recognizer_prediction_ism:
doc:
depends:
- asr_msgs
type: git
url: https://github.com/asr-ros/asr_recognizer_prediction_ism.git
version: master
asr_recognizer_prediction_psm:
doc:
depends:
- asr_msgs
type: git
url: https://github.com/asr-ros/asr_recognizer_prediction_psm.git
version: master
asr_relation_graph_generator:
doc:
type: git
url: https://github.com/asr-ros/asr_relation_graph_generator.git
version: master
asr_resources_for_active_scene_recognition:
doc:
type: git
url: https://github.com/asr-ros/asr_resources_for_active_scene_recognition.git
version: master
asr_resources_for_psm:
doc:
type: git
url: https://github.com/asr-ros/asr_resources_for_psm.git
version: master
asr_resources_for_vision:
doc:
type: git
url: https://github.com/asr-ros/asr_resources_for_vision.git
version: master
asr_robot:
doc:
type: git
url: https://github.com/asr-ros/asr_robot.git
version: master
asr_robot_model_services:
doc:
type: git
url: https://github.com/asr-ros/asr_robot_model_services.git
version: melodic
asr_ros_uri:
doc:
type: git
url: https://github.com/asr-ros/asr_ros_uri.git
version: master
asr_rviz_pose_manager:
doc:
type: git
url: https://github.com/asr-ros/asr_rviz_pose_manager.git
version: master
asr_sick_lms_400:
doc:
type: git
url: https://github.com/asr-ros/asr_sick_lms_400.git
version: master
asr_state_machine:
doc:
type: git
url: https://github.com/asr-ros/asr_state_machine.git
version: master
asr_visualization_server:
doc:
type: git
url: https://github.com/asr-ros/asr_visualization_server.git
version: master
asr_world_model:
doc:
depends:
- asr_msgs
type: git
url: https://github.com/asr-ros/asr_world_model.git
version: master
asr_xsd2cpp:
doc:
type: git
url: https://github.com/asr-ros/asr_xsd2cpp.git
version: master
astuff_sensor_msgs:
doc:
type: git
url: https://github.com/astuff/astuff_sensor_msgs.git
version: release
release:
packages:
- astuff_sensor_msgs
- 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
- radar_msgs
tags:
release: release/melodic/{package}/{version}
url: https://github.com/astuff/astuff_sensor_msgs-release.git
version: 3.0.1-1
source:
type: git
url: https://github.com/astuff/astuff_sensor_msgs.git
version: release
status: developed
async_comm:
doc:
type: git
url: https://github.com/dpkoch/async_comm.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/dpkoch/async_comm-release.git
version: 0.2.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/dpkoch/async_comm.git
version: master
status: developed
async_web_server_cpp:
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/gt-rail-release/async_web_server_cpp-release.git
version: 0.0.3-0
status: unmaintained
ati_force_torque:
doc:
type: git
url: https://github.com/KITrobotics/ati_force_torque.git
version: melodic
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/KITrobotics/ati_force_torque-release.git
version: 1.1.1-3
source:
test_pull_requests: true
type: git
url: https://github.com/KITrobotics/ati_force_torque.git
version: melodic
status: maintained
audibot:
release:
packages:
- audibot
- audibot_description
- audibot_gazebo
tags:
release: release/melodic/{package}/{version}
url: https://github.com/robustify/audibot-release.git
version: 0.1.0-1
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/melodic/{package}/{version}
url: https://github.com/ros-gbp/audio_common-release.git
version: 0.3.6-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: release
release:
packages:
- automotive_autonomy_msgs
- automotive_navigation_msgs
- automotive_platform_msgs
tags:
release: release/melodic/{package}/{version}
url: https://github.com/astuff/automotive_autonomy_msgs-release.git
version: 3.0.3-1
source:
type: git
url: https://github.com/astuff/automotive_autonomy_msgs.git
version: master
status: developed
autoware_msgs:
doc:
type: git
url: https://gitlab.com/autowarefoundation/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/melodic/{package}/{version}
url: https://gitlab.com/autowarefoundation/autoware.ai-ros-releases/messages-release.git
version: 1.13.0-1
source:
type: git
url: https://gitlab.com/autowarefoundation/autoware.ai/messages.git
version: master
status: developed
avt_vimba_camera:
doc:
type: git
url: https://github.com/astuff/avt_vimba_camera.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/astuff/avt_vimba_camera-release.git
version: 0.0.11-1
source:
type: git
url: https://github.com/astuff/avt_vimba_camera.git
version: master
status: maintained
aws_common:
doc:
type: git
url: https://github.com/aws-robotics/utils-common.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/aws-gbp/aws_common-release.git
version: 2.2.0-1
source:
type: git
url: https://github.com/aws-robotics/utils-common.git
version: master
status: maintained
aws_ros1_common:
doc:
type: git
url: https://github.com/aws-robotics/utils-ros1.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/aws-gbp/aws_ros1_common-release.git
version: 2.0.1-2
source:
type: git
url: https://github.com/aws-robotics/utils-ros1.git
version: master
status: maintained
axis_camera:
doc:
type: git
url: https://github.com/ros-drivers/axis_camera.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-drivers-gbp/axis_camera-release.git
version: 0.3.0-1
source:
type: git
url: https://github.com/ros-drivers/axis_camera.git
version: master
status: unmaintained
backward_ros:
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/pal-gbp/backward_ros-release.git
version: 0.1.7-0
bagger:
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/squarerobot/bagger-release.git
version: 0.1.3-0
baldor:
doc:
type: git
url: https://github.com/crigroup/baldor.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/crigroup/baldor-release.git
version: 0.1.2-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: melodic
source:
test_commits: false
type: git
url: https://github.com/uos/basler_tof.git
version: melodic
status: developed
behaviortree_cpp:
doc:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/BehaviorTree/behaviortree_cpp-release.git
version: 2.5.1-0
source:
test_pull_requests: true
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
status: developed
behaviotree_cpp_v3:
doc:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
release:
packages:
- behaviortree_cpp_v3
tags:
release: release/melodic/{package}/{version}
url: https://github.com/BehaviorTree/behaviortree_cpp_v3-release.git
version: 3.5.0-1
source:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
status: developed
bfl:
doc:
type: git
url: https://github.com/ros-gbp/bfl-release.git
version: upstream
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/bfl-release.git
version: 0.8.0-1
status: unmaintained
blender_gazebo:
doc:
type: git
url: https://github.com/david0429/blender_gazebo.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/david0429-gbp/blender_gazebo_gbp.git
version: 0.0.4-1
source:
type: git
url: https://github.com/david0429/blender_gazebo.git
version: master
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/melodic/{package}/{version}
url: https://github.com/ros-gbp/bond_core-release.git
version: 1.8.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/bond_core.git
version: kinetic-devel
status: maintained
brics_actuator:
doc:
type: git
url: https://github.com/wnowak/brics_actuator.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/wnowak/brics_actuator-release.git
version: 0.7.0-0
source:
type: git
url: https://github.com/wnowak/brics_actuator.git
version: master
bta_tof_driver:
doc:
type: git
url: https://github.com/voxel-dot-at/bta_tof_driver.git
version: master
status: maintained
calibration:
doc:
type: git
url: https://github.com/ros-perception/calibration.git
version: hydro
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/melodic/{package}/{version}
url: https://github.com/ros-gbp/calibration-release.git
version: 0.10.14-0
source:
type: git
url: https://github.com/ros-perception/calibration.git
version: hydro
camera_info_manager_py:
doc:
type: git
url: https://github.com/ros-perception/camera_info_manager_py.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/camera_info_manager_py-release.git
version: 0.2.3-1
source:
type: git
url: https://github.com/ros-perception/camera_info_manager_py.git
version: master
status: unmaintained
camera_umd:
doc:
type: git
url: https://github.com/ros-drivers/camera_umd.git
version: master
release:
packages:
- camera_umd
- jpeg_streamer
- uvc_camera
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-drivers-gbp/camera_umd-release.git
version: 0.2.7-0
status: unmaintained
capabilities:
doc:
type: git
url: https://github.com/osrf/capabilities.git
version: master
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/capabilities-release.git
version: 0.2.0-0
source:
test_pull_requests: true
type: git
url: https://github.com/osrf/capabilities.git
version: master
status: maintained
carla_msgs:
doc:
type: git
url: https://github.com/carla-simulator/ros-carla-msgs.git
version: release
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/carla-simulator/ros-carla-msgs-release.git
version: 1.0.1-1
source:
type: git
url: https://github.com/carla-simulator/ros-carla-msgs.git
version: release
status: developed
cartesian_msgs:
doc:
type: git
url: https://github.com/PickNikRobotics/cartesian_msgs.git
version: jade-devel
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/PickNikRobotics/cartesian_msgs-release.git
version: 0.0.3-0
source:
type: git
url: https://github.com/PickNikRobotics/cartesian_msgs.git
version: jade-devel
status: maintained
cartographer:
doc:
type: git
url: https://github.com/googlecartographer/cartographer.git
version: 1.0.0
release:
tags:
release: release/melodic/{package}/{version}
url: https://github.com/ros-gbp/cartographer-release.git
version: 1.0.0-0
status: developed
cartographer_ros:
doc:
type: git
url: https://github.com/googlecartographer/cartographer_ros.git
version: 1.0.0
release:
packages:
- cartographer_ros
- cartographer_ros_msgs
- cartographer_rviz
tags: