distribution.yaml 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074
  1. %YAML 1.1
  2. # ROS distribution file
  3. # see REP 143: http://ros.org/reps/rep-0143.html
  4. ---
  5. release_platforms:
  6. ubuntu:
  7. - bionic
  8. repositories:
  9. acado_vendor:
  10. release:
  11. tags:
  12. release: release/dashing/{package}/{version}
  13. url: https://gitlab.com/autowarefoundation/autoware.auto/acado_vendor-release.git
  14. version: 1.0.0-2
  15. source:
  16. type: git
  17. url: https://gitlab.com/autowarefoundation/autoware.auto/acado_vendor.git
  18. version: main
  19. status: maintained
  20. ackermann_msgs:
  21. doc:
  22. type: git
  23. url: https://github.com/ros-drivers/ackermann_msgs.git
  24. version: ros2
  25. release:
  26. tags:
  27. release: release/dashing/{package}/{version}
  28. url: https://github.com/ros-drivers-gbp/ackermann_msgs-release.git
  29. version: 2.0.2-1
  30. source:
  31. type: git
  32. url: https://github.com/ros-drivers/ackermann_msgs.git
  33. version: ros2
  34. status: maintained
  35. ament_cmake:
  36. doc:
  37. type: git
  38. url: https://github.com/ament/ament_cmake.git
  39. version: dashing
  40. release:
  41. packages:
  42. - ament_cmake
  43. - ament_cmake_auto
  44. - ament_cmake_core
  45. - ament_cmake_export_definitions
  46. - ament_cmake_export_dependencies
  47. - ament_cmake_export_include_directories
  48. - ament_cmake_export_interfaces
  49. - ament_cmake_export_libraries
  50. - ament_cmake_export_link_flags
  51. - ament_cmake_gmock
  52. - ament_cmake_gtest
  53. - ament_cmake_include_directories
  54. - ament_cmake_libraries
  55. - ament_cmake_nose
  56. - ament_cmake_pytest
  57. - ament_cmake_python
  58. - ament_cmake_target_dependencies
  59. - ament_cmake_test
  60. tags:
  61. release: release/dashing/{package}/{version}
  62. url: https://github.com/ros2-gbp/ament_cmake-release.git
  63. version: 0.7.6-1
  64. source:
  65. test_abi: true
  66. type: git
  67. url: https://github.com/ament/ament_cmake.git
  68. version: dashing
  69. status: developed
  70. ament_cmake_ros:
  71. doc:
  72. type: git
  73. url: https://github.com/ros2/ament_cmake_ros.git
  74. version: dashing
  75. release:
  76. tags:
  77. release: release/dashing/{package}/{version}
  78. url: https://github.com/ros2-gbp/ament_cmake_ros-release.git
  79. version: 0.7.0-1
  80. source:
  81. test_pull_requests: true
  82. type: git
  83. url: https://github.com/ros2/ament_cmake_ros.git
  84. version: dashing
  85. status: developed
  86. ament_download:
  87. release:
  88. tags:
  89. release: release/dashing/{package}/{version}
  90. url: https://github.com/samsung-ros/ament_download-release.git
  91. version: 0.0.1-1
  92. status: maintained
  93. ament_index:
  94. doc:
  95. type: git
  96. url: https://github.com/ament/ament_index.git
  97. version: dashing
  98. release:
  99. packages:
  100. - ament_index_cpp
  101. - ament_index_python
  102. tags:
  103. release: release/dashing/{package}/{version}
  104. url: https://github.com/ros2-gbp/ament_index-release.git
  105. version: 0.7.2-1
  106. source:
  107. test_pull_requests: true
  108. type: git
  109. url: https://github.com/ament/ament_index.git
  110. version: dashing
  111. status: developed
  112. ament_lint:
  113. doc:
  114. type: git
  115. url: https://github.com/ament/ament_lint.git
  116. version: dashing
  117. release:
  118. packages:
  119. - ament_clang_format
  120. - ament_clang_tidy
  121. - ament_cmake_clang_format
  122. - ament_cmake_clang_tidy
  123. - ament_cmake_copyright
  124. - ament_cmake_cppcheck
  125. - ament_cmake_cpplint
  126. - ament_cmake_flake8
  127. - ament_cmake_lint_cmake
  128. - ament_cmake_pclint
  129. - ament_cmake_pep257
  130. - ament_cmake_pep8
  131. - ament_cmake_pyflakes
  132. - ament_cmake_uncrustify
  133. - ament_cmake_xmllint
  134. - ament_copyright
  135. - ament_cppcheck
  136. - ament_cpplint
  137. - ament_flake8
  138. - ament_lint
  139. - ament_lint_auto
  140. - ament_lint_cmake
  141. - ament_lint_common
  142. - ament_pclint
  143. - ament_pep257
  144. - ament_pep8
  145. - ament_pyflakes
  146. - ament_uncrustify
  147. - ament_xmllint
  148. tags:
  149. release: release/dashing/{package}/{version}
  150. url: https://github.com/ros2-gbp/ament_lint-release.git
  151. version: 0.7.12-1
  152. source:
  153. test_pull_requests: true
  154. type: git
  155. url: https://github.com/ament/ament_lint.git
  156. version: dashing
  157. status: developed
  158. ament_package:
  159. doc:
  160. type: git
  161. url: https://github.com/ament/ament_package.git
  162. version: dashing
  163. release:
  164. tags:
  165. release: release/dashing/{package}/{version}
  166. url: https://github.com/ros2-gbp/ament_package-release.git
  167. version: 0.7.3-1
  168. source:
  169. type: git
  170. url: https://github.com/ament/ament_package.git
  171. version: dashing
  172. status: developed
  173. ament_virtualenv:
  174. doc:
  175. type: git
  176. url: https://github.com/esol-community/ament_virtualenv.git
  177. version: master
  178. release:
  179. packages:
  180. - ament_cmake_virtualenv
  181. - ament_virtualenv
  182. tags:
  183. release: release/dashing/{package}/{version}
  184. url: https://github.com/esol-community/ament_virtualenv-release.git
  185. version: 0.0.5-5
  186. source:
  187. type: git
  188. url: https://github.com/esol-community/ament_virtualenv.git
  189. version: master
  190. status: developed
  191. angles:
  192. doc:
  193. type: git
  194. url: https://github.com/ros/angles.git
  195. version: ros2
  196. release:
  197. tags:
  198. release: release/dashing/{package}/{version}
  199. url: https://github.com/ros2-gbp/angles-release.git
  200. version: 1.12.2-1
  201. source:
  202. test_pull_requests: true
  203. type: git
  204. url: https://github.com/ros/angles.git
  205. version: ros2
  206. status: maintained
  207. apex_containers:
  208. doc:
  209. type: git
  210. url: https://gitlab.com/ApexAI/apex_containers.git
  211. version: master
  212. release:
  213. tags:
  214. release: release/dashing/{package}/{version}
  215. url: https://gitlab.com/ApexAI/apex_containers-release.git
  216. version: 0.0.2-1
  217. source:
  218. type: git
  219. url: https://gitlab.com/ApexAI/apex_containers.git
  220. version: master
  221. status: developed
  222. apex_test_tools:
  223. doc:
  224. type: git
  225. url: https://gitlab.com/ApexAI/apex_test_tools.git
  226. version: master
  227. release:
  228. tags:
  229. release: release/dashing/{package}/{version}
  230. url: https://gitlab.com/ApexAI/apex_test_tools-release.git
  231. version: 0.0.1-1
  232. source:
  233. type: git
  234. url: https://gitlab.com/ApexAI/apex_test_tools.git
  235. version: master
  236. status: developed
  237. apriltag:
  238. release:
  239. tags:
  240. release: release/dashing/{package}/{version}
  241. url: https://github.com/AprilRobotics/apriltag-release.git
  242. version: 3.1.1-1
  243. source:
  244. type: git
  245. url: https://github.com/AprilRobotics/apriltag.git
  246. version: master
  247. status: maintained
  248. apriltag_msgs:
  249. release:
  250. tags:
  251. release: release/dashing/{package}/{version}
  252. url: https://github.com/christianrauch/apriltag_msgs-release.git
  253. version: 2.0.0-2
  254. source:
  255. type: git
  256. url: https://github.com/christianrauch/apriltag_msgs.git
  257. version: master
  258. status: developed
  259. apriltag_ros:
  260. release:
  261. tags:
  262. release: release/dashing/{package}/{version}
  263. url: https://github.com/christianrauch/apriltag_ros-release.git
  264. version: 2.1.0-1
  265. source:
  266. type: git
  267. url: https://github.com/christianrauch/apriltag_ros.git
  268. version: master
  269. status: developed
  270. astuff_sensor_msgs:
  271. doc:
  272. type: git
  273. url: https://github.com/astuff/astuff_sensor_msgs.git
  274. version: master
  275. release:
  276. packages:
  277. - astuff_sensor_msgs
  278. - delphi_esr_msgs
  279. - delphi_mrr_msgs
  280. - delphi_srr_msgs
  281. - derived_object_msgs
  282. - ibeo_msgs
  283. - kartech_linear_actuator_msgs
  284. - mobileye_560_660_msgs
  285. - neobotix_usboard_msgs
  286. - pacmod_msgs
  287. - radar_msgs
  288. tags:
  289. release: release/dashing/{package}/{version}
  290. url: https://github.com/astuff/astuff_sensor_msgs-release.git
  291. version: 3.0.1-1
  292. source:
  293. type: git
  294. url: https://github.com/astuff/astuff_sensor_msgs.git
  295. version: master
  296. status: developed
  297. async_web_server_cpp:
  298. release:
  299. tags:
  300. release: release/dashing/{package}/{version}
  301. url: https://github.com/ros2-gbp/async_web_server_cpp-release.git
  302. version: 1.0.0-1
  303. status: unmaintained
  304. automotive_autonomy_msgs:
  305. doc:
  306. type: git
  307. url: https://github.com/astuff/automotive_autonomy_msgs.git
  308. version: master
  309. release:
  310. packages:
  311. - automotive_autonomy_msgs
  312. - automotive_navigation_msgs
  313. - automotive_platform_msgs
  314. tags:
  315. release: release/dashing/{package}/{version}
  316. url: https://github.com/astuff/automotive_autonomy_msgs-release.git
  317. version: 3.0.3-1
  318. source:
  319. type: git
  320. url: https://github.com/astuff/automotive_autonomy_msgs.git
  321. version: master
  322. status: developed
  323. autoware_auto_msgs:
  324. doc:
  325. type: git
  326. url: https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs.git
  327. version: master
  328. release:
  329. tags:
  330. release: release/dashing/{package}/{version}
  331. url: https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs-release.git
  332. version: 1.0.0-1
  333. source:
  334. type: git
  335. url: https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs.git
  336. version: master
  337. status: developed
  338. aws-robomaker-simulation-ros-pkgs:
  339. doc:
  340. type: git
  341. url: https://github.com/aws-robotics/aws-robomaker-simulation-ros-pkgs.git
  342. version: dashing
  343. release:
  344. packages:
  345. - aws_robomaker_simulation_ros_pkgs
  346. - robomaker_simulation_msgs
  347. tags:
  348. release: release/dashing/{package}/{version}
  349. url: https://github.com/aws-gbp/aws_robomaker_simulation_ros_pkgs-release.git
  350. version: 1.2.1-1
  351. status: maintained
  352. aws_common:
  353. doc:
  354. type: git
  355. url: https://github.com/aws-robotics/utils-common.git
  356. version: master
  357. release:
  358. tags:
  359. release: release/dashing/{package}/{version}
  360. url: https://github.com/aws-gbp/aws_common-release.git
  361. version: 2.2.0-1
  362. source:
  363. type: git
  364. url: https://github.com/aws-robotics/utils-common.git
  365. version: master
  366. status: maintained
  367. aws_ros2_common:
  368. doc:
  369. type: git
  370. url: https://github.com/aws-robotics/utils-ros2.git
  371. version: master
  372. release:
  373. tags:
  374. release: release/dashing/{package}/{version}
  375. url: https://github.com/aws-gbp/aws_ros2_common-release.git
  376. version: 1.0.1-1
  377. source:
  378. type: git
  379. url: https://github.com/aws-robotics/utils-ros2.git
  380. version: master
  381. status: developed
  382. behaviortree_cpp:
  383. release:
  384. tags:
  385. release: release/dashing/{package}/{version}
  386. url: https://github.com/BehaviorTree/behaviortree_cpp-release.git
  387. version: 2.5.2-1
  388. behaviortree_cpp_v3:
  389. doc:
  390. type: git
  391. url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
  392. version: ros2-devel
  393. release:
  394. tags:
  395. release: release/dashing/{package}/{version}
  396. url: https://github.com/BehaviorTree/behaviortree_cpp_v3-release.git
  397. version: 3.1.1-1
  398. source:
  399. type: git
  400. url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
  401. version: ros2-devel
  402. status: developed
  403. bond_core:
  404. doc:
  405. type: git
  406. url: https://github.com/ros/bond_core.git
  407. version: dashing-devel
  408. release:
  409. packages:
  410. - bond
  411. - smclib
  412. tags:
  413. release: release/dashing/{package}/{version}
  414. url: https://github.com/ros2-gbp/bond_core-release.git
  415. version: 2.0.0-1
  416. source:
  417. test_pull_requests: true
  418. type: git
  419. url: https://github.com/ros/bond_core.git
  420. version: dashing-devel
  421. status: maintained
  422. cartographer:
  423. doc:
  424. type: git
  425. url: https://github.com/ros2/cartographer.git
  426. version: ros2
  427. release:
  428. tags:
  429. release: release/dashing/{package}/{version}
  430. url: https://github.com/ros2-gbp/cartographer-release.git
  431. version: 1.0.9001-1
  432. source:
  433. type: git
  434. url: https://github.com/ros2/cartographer.git
  435. version: ros2
  436. status: maintained
  437. cartographer_ros:
  438. doc:
  439. type: git
  440. url: https://github.com/ros2/cartographer_ros.git
  441. version: dashing
  442. release:
  443. packages:
  444. - cartographer_ros
  445. - cartographer_ros_msgs
  446. tags:
  447. release: release/dashing/{package}/{version}
  448. url: https://github.com/ros2-gbp/cartographer_ros-release.git
  449. version: 1.0.9003-1
  450. source:
  451. test_pull_requests: true
  452. type: git
  453. url: https://github.com/ros2/cartographer_ros.git
  454. version: dashing
  455. status: maintained
  456. casadi_vendor:
  457. doc:
  458. type: git
  459. url: https://gitlab.com/autowarefoundation/autoware.auto/casadi_vendor.git
  460. version: master
  461. release:
  462. tags:
  463. release: release/dashing/{package}/{version}
  464. url: https://gitlab.com/autowarefoundation/autoware.auto/casadi_vendor-release.git
  465. version: 3.5.1-1
  466. source:
  467. type: git
  468. url: https://gitlab.com/autowarefoundation/autoware.auto/casadi_vendor.git
  469. version: master
  470. status: maintained
  471. class_loader:
  472. doc:
  473. type: git
  474. url: https://github.com/ros/class_loader.git
  475. version: dashing
  476. release:
  477. tags:
  478. release: release/dashing/{package}/{version}
  479. url: https://github.com/ros2-gbp/class_loader-release.git
  480. version: 1.3.3-1
  481. source:
  482. test_pull_requests: true
  483. type: git
  484. url: https://github.com/ros/class_loader.git
  485. version: dashing
  486. status: developed
  487. cloudwatch_common:
  488. doc:
  489. type: git
  490. url: https://github.com/aws-robotics/cloudwatch-common.git
  491. version: master
  492. release:
  493. packages:
  494. - cloudwatch_logs_common
  495. - cloudwatch_metrics_common
  496. - dataflow_lite
  497. - file_management
  498. tags:
  499. release: release/dashing/{package}/{version}
  500. url: https://github.com/aws-gbp/cloudwatch_common-release.git
  501. version: 1.1.5-1
  502. source:
  503. type: git
  504. url: https://github.com/aws-robotics/cloudwatch-common.git
  505. version: master
  506. status: maintained
  507. cloudwatch_logger:
  508. doc:
  509. type: git
  510. url: https://github.com/aws-robotics/cloudwatchlogs-ros2.git
  511. version: master
  512. release:
  513. tags:
  514. release: release/dashing/{package}/{version}
  515. url: https://github.com/aws-gbp/cloudwatch_logger-release.git
  516. version: 3.0.1-1
  517. source:
  518. type: git
  519. url: https://github.com/aws-robotics/cloudwatchlogs-ros2.git
  520. version: master
  521. status: developed
  522. cloudwatch_metrics_collector:
  523. doc:
  524. type: git
  525. url: https://github.com/aws-robotics/cloudwatchmetrics-ros2.git
  526. version: master
  527. release:
  528. tags:
  529. release: release/dashing/{package}/{version}
  530. url: https://github.com/aws-gbp/cloudwatch_metrics_collector-release.git
  531. version: 3.0.1-1
  532. source:
  533. type: git
  534. url: https://github.com/aws-robotics/cloudwatchmetrics-ros2.git
  535. version: master
  536. status: developed
  537. common_interfaces:
  538. doc:
  539. type: git
  540. url: https://github.com/ros2/common_interfaces.git
  541. version: dashing
  542. release:
  543. packages:
  544. - actionlib_msgs
  545. - common_interfaces
  546. - diagnostic_msgs
  547. - geometry_msgs
  548. - nav_msgs
  549. - sensor_msgs
  550. - shape_msgs
  551. - std_msgs
  552. - std_srvs
  553. - stereo_msgs
  554. - trajectory_msgs
  555. - visualization_msgs
  556. tags:
  557. release: release/dashing/{package}/{version}
  558. url: https://github.com/ros2-gbp/common_interfaces-release.git
  559. version: 0.7.1-1
  560. source:
  561. test_pull_requests: true
  562. type: git
  563. url: https://github.com/ros2/common_interfaces.git
  564. version: dashing
  565. status: developed
  566. console_bridge_vendor:
  567. release:
  568. tags:
  569. release: release/dashing/{package}/{version}
  570. url: https://github.com/ros2-gbp/console_bridge_vendor-release.git
  571. version: 1.2.0-1
  572. source:
  573. type: git
  574. url: https://github.com/ros2/console_bridge_vendor.git
  575. version: dashing
  576. status: maintained
  577. contracts_lite_vendor:
  578. doc:
  579. type: git
  580. url: https://github.com/ros-safety/contracts_lite_vendor.git
  581. version: master
  582. release:
  583. tags:
  584. release: release/dashing/{package}/{version}
  585. url: https://github.com/ros-safety/contracts_lite_vendor-release.git
  586. version: 0.4.1-1
  587. source:
  588. type: git
  589. url: https://github.com/ros-safety/contracts_lite_vendor.git
  590. version: master
  591. status: developed
  592. control_msgs:
  593. doc:
  594. type: git
  595. url: https://github.com/ros-controls/control_msgs.git
  596. version: crystal-devel
  597. release:
  598. tags:
  599. release: release/dashing/{package}/{version}
  600. url: https://github.com/ros-gbp/control_msgs-release.git
  601. version: 2.2.0-1
  602. source:
  603. type: git
  604. url: https://github.com/ros-controls/control_msgs.git
  605. version: crystal-devel
  606. status: maintained
  607. costmap_converter:
  608. doc:
  609. type: git
  610. url: https://github.com/rst-tu-dortmund/costmap_converter.git
  611. version: ros2
  612. release:
  613. packages:
  614. - costmap_converter
  615. - costmap_converter_msgs
  616. tags:
  617. release: release/dashing/{package}/{version}
  618. url: https://github.com/rst-tu-dortmund/costmap_converter-ros2-release.git
  619. version: 0.1.0-1
  620. source:
  621. test_pull_requests: true
  622. type: git
  623. url: https://github.com/rst-tu-dortmund/costmap_converter.git
  624. version: ros2
  625. status: developed
  626. cyclonedds:
  627. release:
  628. tags:
  629. release: release/dashing/{package}/{version}
  630. url: https://github.com/ros2-gbp/cyclonedds-release.git
  631. version: 0.7.0-2
  632. source:
  633. test_commits: false
  634. test_pull_requests: false
  635. type: git
  636. url: https://github.com/eclipse-cyclonedds/cyclonedds.git
  637. version: releases/0.7.x
  638. status: developed
  639. demos:
  640. doc:
  641. type: git
  642. url: https://github.com/ros2/demos.git
  643. version: dashing
  644. release:
  645. packages:
  646. - action_tutorials
  647. - composition
  648. - demo_nodes_cpp
  649. - demo_nodes_cpp_native
  650. - demo_nodes_py
  651. - dummy_map_server
  652. - dummy_robot_bringup
  653. - dummy_sensors
  654. - image_tools
  655. - intra_process_demo
  656. - lifecycle
  657. - logging_demo
  658. - pendulum_control
  659. - pendulum_msgs
  660. - quality_of_service_demo_cpp
  661. - quality_of_service_demo_py
  662. - topic_monitor
  663. tags:
  664. release: release/dashing/{package}/{version}
  665. url: https://github.com/ros2-gbp/demos-release.git
  666. version: 0.7.9-1
  667. source:
  668. test_pull_requests: true
  669. type: git
  670. url: https://github.com/ros2/demos.git
  671. version: dashing
  672. status: developed
  673. depthimage_to_laserscan:
  674. doc:
  675. type: git
  676. url: https://github.com/ros-perception/depthimage_to_laserscan.git
  677. version: dashing-devel
  678. release:
  679. tags:
  680. release: release/dashing/{package}/{version}
  681. url: https://github.com/ros2-gbp/depthimage_to_laserscan-release.git
  682. version: 2.2.5-1
  683. source:
  684. test_pull_requests: true
  685. type: git
  686. url: https://github.com/ros-perception/depthimage_to_laserscan.git
  687. version: dashing-devel
  688. status: maintained
  689. diagnostics:
  690. doc:
  691. type: git
  692. url: https://github.com/ros/diagnostics.git
  693. version: dashing
  694. release:
  695. packages:
  696. - diagnostic_updater
  697. - self_test
  698. tags:
  699. release: release/dashing/{package}/{version}
  700. url: https://github.com/ros2-gbp/diagnostics-release.git
  701. version: 2.0.0-1
  702. source:
  703. test_pull_requests: true
  704. type: git
  705. url: https://github.com/ros/diagnostics.git
  706. version: dashing
  707. status: developed
  708. dolly:
  709. release:
  710. packages:
  711. - dolly
  712. - dolly_follow
  713. - dolly_gazebo
  714. tags:
  715. release: release/dashing/{package}/{version}
  716. url: https://github.com/chapulina/dolly-release.git
  717. version: 0.1.1-2
  718. source:
  719. test_pull_requests: true
  720. type: git
  721. url: https://github.com/chapulina/dolly.git
  722. version: dashing
  723. status: maintained
  724. dynamixel_sdk:
  725. doc:
  726. type: git
  727. url: https://github.com/ROBOTIS-GIT/DynamixelSDK.git
  728. version: dashing-devel
  729. release:
  730. tags:
  731. release: release/dashing/{package}/{version}
  732. url: https://github.com/robotis-ros2-release/dynamixel_sdk-release.git
  733. version: 3.7.40-10
  734. source:
  735. type: git
  736. url: https://github.com/ROBOTIS-GIT/DynamixelSDK.git
  737. version: dashing-devel
  738. status: developed
  739. ecl_core:
  740. doc:
  741. type: git
  742. url: https://github.com/stonier/ecl_core.git
  743. version: release/1.0.x
  744. release:
  745. packages:
  746. - ecl_command_line
  747. - ecl_concepts
  748. - ecl_containers
  749. - ecl_converters
  750. - ecl_core
  751. - ecl_core_apps
  752. - ecl_devices
  753. - ecl_eigen
  754. - ecl_exceptions
  755. - ecl_filesystem
  756. - ecl_formatters
  757. - ecl_geometry
  758. - ecl_ipc
  759. - ecl_linear_algebra
  760. - ecl_manipulators
  761. - ecl_math
  762. - ecl_mobile_robot
  763. - ecl_mpl
  764. - ecl_sigslots
  765. - ecl_statistics
  766. - ecl_streams
  767. - ecl_threads
  768. - ecl_time
  769. - ecl_type_traits
  770. - ecl_utilities
  771. tags:
  772. release: release/dashing/{package}/{version}
  773. url: https://github.com/yujinrobot-release/ecl_core-release.git
  774. version: 1.0.4-1
  775. source:
  776. type: git
  777. url: https://github.com/stonier/ecl_core.git
  778. version: release/1.0.x
  779. status: maintained
  780. ecl_lite:
  781. doc:
  782. type: git
  783. url: https://github.com/stonier/ecl_lite.git
  784. version: release/1.0.x
  785. release:
  786. packages:
  787. - ecl_config
  788. - ecl_console
  789. - ecl_converters_lite
  790. - ecl_errors
  791. - ecl_io
  792. - ecl_lite
  793. - ecl_sigslots_lite
  794. - ecl_time_lite
  795. tags:
  796. release: release/dashing/{package}/{version}
  797. url: https://github.com/yujinrobot-release/ecl_lite-release.git
  798. version: 1.0.3-2
  799. source:
  800. type: git
  801. url: https://github.com/stonier/ecl_lite.git
  802. version: release/1.0.x
  803. status: maintained
  804. ecl_tools:
  805. doc:
  806. type: git
  807. url: https://github.com/stonier/ecl_tools.git
  808. version: release/1.0.x
  809. release:
  810. packages:
  811. - ecl_build
  812. - ecl_license
  813. - ecl_tools
  814. tags:
  815. release: release/dashing/{package}/{version}
  816. url: https://github.com/yujinrobot-release/ecl_tools-release.git
  817. version: 1.0.2-1
  818. source:
  819. type: git
  820. url: https://github.com/stonier/ecl_tools.git
  821. version: release/1.0.x
  822. status: maintained
  823. eigen3_cmake_module:
  824. doc:
  825. type: git
  826. url: https://github.com/ros2/eigen3_cmake_module.git
  827. version: master
  828. release:
  829. tags:
  830. release: release/dashing/{package}/{version}
  831. url: https://github.com/ros2-gbp/eigen3_cmake_module-release.git
  832. version: 0.1.1-1
  833. source:
  834. test_pull_requests: true
  835. type: git
  836. url: https://github.com/ros2/eigen3_cmake_module.git
  837. version: master
  838. status: maintained
  839. eigen_stl_containers:
  840. doc:
  841. type: git
  842. url: https://github.com/ros/eigen_stl_containers.git
  843. version: dashing
  844. release:
  845. tags:
  846. release: release/dashing/{package}/{version}
  847. url: https://github.com/ros2-gbp/eigen_stl_containers-release.git
  848. version: 1.0.0-1
  849. source:
  850. test_pull_requests: true
  851. type: git
  852. url: https://github.com/ros/eigen_stl_containers.git
  853. version: dashing
  854. status: maintained
  855. example_interfaces:
  856. doc:
  857. type: git
  858. url: https://github.com/ros2/example_interfaces.git
  859. version: dashing
  860. release:
  861. tags:
  862. release: release/dashing/{package}/{version}
  863. url: https://github.com/ros2-gbp/example_interfaces-release.git
  864. version: 0.7.1-1
  865. source:
  866. test_pull_requests: true
  867. type: git
  868. url: https://github.com/ros2/example_interfaces.git
  869. version: dashing
  870. status: developed
  871. examples:
  872. doc:
  873. type: git
  874. url: https://github.com/ros2/examples.git
  875. version: dashing
  876. release:
  877. packages:
  878. - examples_rclcpp_minimal_action_client
  879. - examples_rclcpp_minimal_action_server
  880. - examples_rclcpp_minimal_client
  881. - examples_rclcpp_minimal_composition
  882. - examples_rclcpp_minimal_publisher
  883. - examples_rclcpp_minimal_service
  884. - examples_rclcpp_minimal_subscriber
  885. - examples_rclcpp_minimal_timer
  886. - examples_rclpy_executors
  887. - examples_rclpy_minimal_action_client
  888. - examples_rclpy_minimal_action_server
  889. - examples_rclpy_minimal_client
  890. - examples_rclpy_minimal_publisher
  891. - examples_rclpy_minimal_service
  892. - examples_rclpy_minimal_subscriber
  893. tags:
  894. release: release/dashing/{package}/{version}
  895. url: https://github.com/ros2-gbp/examples-release.git
  896. version: 0.7.5-1
  897. source:
  898. test_pull_requests: true
  899. type: git
  900. url: https://github.com/ros2/examples.git
  901. version: dashing
  902. status: developed
  903. fastcdr:
  904. release:
  905. tags:
  906. release: release/dashing/{package}/{version}
  907. url: https://github.com/ros2-gbp/fastcdr-release.git
  908. version: 1.0.13-1
  909. source:
  910. test_commits: false
  911. test_pull_requests: false
  912. type: git
  913. url: https://github.com/eProsima/Fast-CDR.git
  914. version: 906c966c426f85d503baca9c2e46bead7b633dff
  915. status: developed
  916. fastrtps:
  917. release:
  918. tags:
  919. release: release/dashing/{package}/{version}
  920. url: https://github.com/ros2-gbp/fastrtps-release.git
  921. version: 1.8.4-3
  922. source:
  923. test_commits: false
  924. test_pull_requests: false
  925. type: git
  926. url: https://github.com/eProsima/Fast-DDS.git
  927. version: 6a6f79c4256a00fc13834a2aaa3c60a0aaac5e76
  928. status: developed
  929. fmi_adapter:
  930. doc:
  931. type: git
  932. url: https://github.com/boschresearch/fmi_adapter.git
  933. version: dashing
  934. release:
  935. packages:
  936. - fmi_adapter
  937. - fmi_adapter_examples
  938. tags:
  939. release: release/dashing/{package}/{version}
  940. url: https://github.com/ros2-gbp/fmi_adapter-release.git
  941. version: 2.0.0-1
  942. source:
  943. type: git
  944. url: https://github.com/boschresearch/fmi_adapter.git
  945. version: dashing
  946. status: maintained
  947. fmilibrary_vendor:
  948. release:
  949. tags:
  950. release: release/dashing/{package}/{version}
  951. url: https://github.com/ros2-gbp/fmilibrary_vendor-release.git
  952. version: 1.0.1-1
  953. source:
  954. type: git
  955. url: https://github.com/boschresearch/fmilibrary_vendor.git
  956. version: dashing
  957. status: maintained
  958. foonathan_memory_vendor:
  959. release:
  960. tags:
  961. release: release/dashing/{package}/{version}
  962. url: https://github.com/ros2-gbp/foonathan_memory_vendor-release.git
  963. version: 0.3.0-1
  964. source:
  965. test_pull_requests: true
  966. type: git
  967. url: https://github.com/eProsima/foonathan_memory_vendor.git
  968. version: master
  969. status: maintained
  970. gazebo_ros_pkgs:
  971. doc:
  972. type: git
  973. url: https://github.com/ros-simulation/gazebo_ros_pkgs.git
  974. version: dashing
  975. release:
  976. packages:
  977. - gazebo_dev
  978. - gazebo_msgs
  979. - gazebo_plugins
  980. - gazebo_ros
  981. - gazebo_ros_pkgs
  982. tags:
  983. release: release/dashing/{package}/{version}
  984. url: https://github.com/ros2-gbp/gazebo_ros_pkgs-release.git
  985. version: 3.3.5-3
  986. source:
  987. test_pull_requests: true
  988. type: git
  989. url: https://github.com/ros-simulation/gazebo_ros_pkgs.git
  990. version: dashing
  991. status: developed
  992. geographic_info:
  993. doc:
  994. type: git
  995. url: https://github.com/ros-geographic-info/geographic_info.git
  996. version: ros2
  997. release:
  998. packages:
  999. - geodesy
  1000. - geographic_info
  1001. - geographic_msgs
  1002. tags:
  1003. release: release/dashing/{package}/{version}
  1004. url: https://github.com/ros-geographic-info/geographic_info-release.git
  1005. version: 1.0.1-1
  1006. source:
  1007. test_pull_requests: true
  1008. type: git
  1009. url: https://github.com/ros-geographic-info/geographic_info.git
  1010. version: ros2
  1011. status: maintained
  1012. geometry2:
  1013. doc:
  1014. type: git
  1015. url: https://github.com/ros2/geometry2.git
  1016. version: dashing
  1017. release:
  1018. packages:
  1019. - tf2
  1020. - tf2_eigen
  1021. - tf2_geometry_msgs
  1022. - tf2_kdl
  1023. - tf2_msgs
  1024. - tf2_ros
  1025. - tf2_sensor_msgs
  1026. tags:
  1027. release: release/dashing/{package}/{version}
  1028. url: https://github.com/ros2-gbp/geometry2-release.git
  1029. version: 0.11.6-1
  1030. source:
  1031. test_pull_requests: true
  1032. type: git
  1033. url: https://github.com/ros2/geometry2.git
  1034. version: dashing
  1035. status: maintained
  1036. googletest:
  1037. release:
  1038. packages:
  1039. - gmock_vendor
  1040. - gtest_vendor
  1041. tags:
  1042. release: release/dashing/{package}/{version}
  1043. url: https://github.com/ros2-gbp/googletest-release.git
  1044. version: 1.8.9000-1
  1045. source:
  1046. type: git
  1047. url: https://github.com/ament/googletest.git
  1048. version: dashing
  1049. status: maintained
  1050. gps_umd:
  1051. doc:
  1052. type: git
  1053. url: https://github.com/swri-robotics/gps_umd.git
  1054. version: dashing-devel
  1055. release:
  1056. packages:
  1057. - gps_msgs
  1058. - gps_tools
  1059. - gps_umd
  1060. - gpsd_client
  1061. tags:
  1062. release: release/dashing/{package}/{version}
  1063. url: https://github.com/swri-robotics-gbp/gps_umd-release.git
  1064. version: 1.0.4-1
  1065. source:
  1066. type: git
  1067. url: https://github.com/swri-robotics/gps_umd.git
  1068. version: dashing-devel
  1069. status: maintained
  1070. grbl_msgs:
  1071. doc:
  1072. type: git
  1073. url: https://github.com/flynneva/grbl_msgs.git
  1074. version: main
  1075. release:
  1076. tags:
  1077. release: release/dashing/{package}/{version}
  1078. url: https://github.com/flynneva/grbl_msgs-release.git
  1079. version: 0.0.2-1
  1080. source:
  1081. type: git
  1082. url: https://github.com/flynneva/grbl_msgs.git
  1083. version: main
  1084. status: maintained
  1085. grbl_ros:
  1086. doc:
  1087. type: git
  1088. url: https://github.com/flynneva/grbl_ros.git
  1089. version: main
  1090. release:
  1091. tags:
  1092. release: release/dashing/{package}/{version}
  1093. url: https://github.com/flynneva/grbl_ros-release.git
  1094. version: 0.0.15-1
  1095. source:
  1096. type: git
  1097. url: https://github.com/flynneva/grbl_ros.git
  1098. version: main
  1099. status: developed
  1100. gtsam:
  1101. doc:
  1102. type: git
  1103. url: https://github.com/borglab/gtsam.git
  1104. version: develop
  1105. source:
  1106. type: git
  1107. url: https://github.com/borglab/gtsam.git
  1108. version: develop
  1109. status: maintained
  1110. h264_encoder_core:
  1111. doc:
  1112. type: git
  1113. url: https://github.com/aws-robotics/kinesisvideo-encoder-common.git
  1114. version: master
  1115. release:
  1116. tags:
  1117. release: release/dashing/{package}/{version}
  1118. url: https://github.com/aws-gbp/h264_encoder_core-release.git
  1119. version: 2.0.3-1
  1120. source:
  1121. type: git
  1122. url: https://github.com/aws-robotics/kinesisvideo-encoder-common.git
  1123. version: master
  1124. status: maintained
  1125. h264_video_encoder:
  1126. doc:
  1127. type: git
  1128. url: https://github.com/aws-robotics/kinesisvideo-encoder-ros2.git
  1129. version: master
  1130. release:
  1131. tags:
  1132. release: release/dashing/{package}/{version}
  1133. url: https://github.com/aws-gbp/h264_video_encoder-release.git
  1134. version: 2.0.0-1
  1135. source:
  1136. type: git
  1137. url: https://github.com/aws-robotics/kinesisvideo-encoder-ros2.git
  1138. version: master
  1139. status: developed
  1140. health_metric_collector:
  1141. doc:
  1142. type: git
  1143. url: https://github.com/aws-robotics/health-metrics-collector-ros2.git
  1144. version: master
  1145. release:
  1146. tags:
  1147. release: release/dashing/{package}/{version}
  1148. url: https://github.com/aws-gbp/health_metric_collector-release.git
  1149. version: 3.0.1-1
  1150. source:
  1151. type: git
  1152. url: https://github.com/aws-robotics/health-metrics-collector-ros2.git
  1153. version: master
  1154. status: developed
  1155. hls_lfcd_lds_driver:
  1156. doc:
  1157. type: git
  1158. url: https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver.git
  1159. version: dashing-devel
  1160. release:
  1161. tags:
  1162. release: release/dashing/{package}/{version}
  1163. url: https://github.com/robotis-ros2-release/hls_lfcd_lds_driver-release.git
  1164. version: 2.0.3-1
  1165. source:
  1166. type: git
  1167. url: https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver.git
  1168. version: dashing-devel
  1169. status: developed
  1170. ifm3d_core:
  1171. release:
  1172. tags:
  1173. release: release/dashing/{package}/{version}
  1174. url: https://github.com/ifm/ifm3d-release.git
  1175. version: 0.18.0-1
  1176. status: developed
  1177. image_common:
  1178. doc:
  1179. type: git
  1180. url: https://github.com/ros-perception/image_common.git
  1181. version: dashing
  1182. release:
  1183. packages:
  1184. - camera_calibration_parsers
  1185. - camera_info_manager
  1186. - image_transport
  1187. tags:
  1188. release: release/dashing/{package}/{version}
  1189. url: https://github.com/ros2-gbp/image_common-release.git
  1190. version: 2.1.1-1
  1191. source:
  1192. test_pull_requests: true
  1193. type: git
  1194. url: https://github.com/ros-perception/image_common.git
  1195. version: dashing
  1196. status: maintained
  1197. image_pipeline:
  1198. doc:
  1199. type: git
  1200. url: https://github.com/ros-perception/image_pipeline.git
  1201. version: dashing
  1202. release:
  1203. packages:
  1204. - camera_calibration
  1205. - depth_image_proc
  1206. - image_pipeline
  1207. - image_proc
  1208. - image_publisher
  1209. - image_rotate
  1210. - image_view
  1211. - stereo_image_proc
  1212. tags:
  1213. release: release/dashing/{package}/{version}
  1214. url: https://github.com/ros2-gbp/image_pipeline-release.git
  1215. version: 2.1.1-1
  1216. source:
  1217. type: git
  1218. url: https://github.com/ros-perception/image_pipeline.git
  1219. version: dashing
  1220. status: maintained
  1221. image_transport_plugins:
  1222. doc:
  1223. type: git
  1224. url: https://github.com/ros-perception/image_transport_plugins.git
  1225. version: dashing-devel
  1226. release:
  1227. packages:
  1228. - compressed_depth_image_transport
  1229. - compressed_image_transport
  1230. - image_transport_plugins
  1231. - theora_image_transport
  1232. tags:
  1233. release: release/dashing/{package}/{version}
  1234. url: https://github.com/ros2-gbp/image_transport_plugins-release.git
  1235. version: 2.1.0-1
  1236. source:
  1237. test_pull_requests: true
  1238. type: git
  1239. url: https://github.com/ros-perception/image_transport_plugins.git
  1240. version: dashing-devel
  1241. status: maintained
  1242. joint_state_publisher:
  1243. doc:
  1244. type: git
  1245. url: https://github.com/ros/joint_state_publisher.git
  1246. version: ros2
  1247. release:
  1248. packages:
  1249. - joint_state_publisher
  1250. - joint_state_publisher_gui
  1251. tags:
  1252. release: release/dashing/{package}/{version}
  1253. url: https://github.com/ros2-gbp/joint_state_publisher-release.git
  1254. version: 2.0.1-1
  1255. source:
  1256. test_pull_requests: true
  1257. type: git
  1258. url: https://github.com/ros/joint_state_publisher.git
  1259. version: ros2
  1260. status: maintained
  1261. joystick_drivers:
  1262. doc:
  1263. type: git
  1264. url: https://github.com/ros2/joystick_drivers.git
  1265. version: dashing
  1266. release:
  1267. packages:
  1268. - joy
  1269. tags:
  1270. release: release/dashing/{package}/{version}
  1271. url: https://github.com/ros2-gbp/joystick_drivers-release.git
  1272. version: 2.3.2-1
  1273. source:
  1274. test_pull_requests: true
  1275. type: git
  1276. url: https://github.com/ros2/joystick_drivers.git
  1277. version: dashing
  1278. status: maintained
  1279. kdl_parser:
  1280. doc:
  1281. type: git
  1282. url: https://github.com/ros/kdl_parser.git
  1283. version: dashing
  1284. release:
  1285. tags:
  1286. release: release/dashing/{package}/{version}
  1287. url: https://github.com/ros2-gbp/kdl_parser-release.git
  1288. version: 2.2.1-1
  1289. source:
  1290. test_pull_requests: true
  1291. type: git
  1292. url: https://github.com/ros/kdl_parser.git
  1293. version: dashing
  1294. status: maintained
  1295. kinesis_manager:
  1296. doc:
  1297. type: git
  1298. url: https://github.com/aws-robotics/kinesisvideo-common.git
  1299. version: master
  1300. release:
  1301. tags:
  1302. release: release/dashing/{package}/{version}
  1303. url: https://github.com/aws-gbp/kinesis_manager-release.git
  1304. version: 2.0.1-1
  1305. source:
  1306. type: git
  1307. url: https://github.com/aws-robotics/kinesisvideo-common.git
  1308. version: master
  1309. status: maintained
  1310. kinesis_video_streamer:
  1311. doc:
  1312. type: git
  1313. url: https://github.com/aws-robotics/kinesisvideo-ros2.git
  1314. version: master
  1315. release:
  1316. packages:
  1317. - kinesis_video_msgs
  1318. - kinesis_video_streamer
  1319. tags:
  1320. release: release/dashing/{package}/{version}
  1321. url: https://github.com/aws-gbp/kinesis_video_streamer-release.git
  1322. version: 3.1.0-1
  1323. source:
  1324. type: git
  1325. url: https://github.com/aws-robotics/kinesisvideo-ros2.git
  1326. version: master
  1327. status: developed
  1328. lanelet2:
  1329. doc:
  1330. type: git
  1331. url: https://github.com/fzi-forschungszentrum-informatik/lanelet2.git
  1332. version: master
  1333. release:
  1334. packages:
  1335. - lanelet2
  1336. - lanelet2_core
  1337. - lanelet2_examples
  1338. - lanelet2_io
  1339. - lanelet2_maps
  1340. - lanelet2_projection
  1341. - lanelet2_python
  1342. - lanelet2_routing
  1343. - lanelet2_traffic_rules
  1344. - lanelet2_validation
  1345. tags:
  1346. release: release/dashing/{package}/{version}
  1347. url: https://github.com/fzi-forschungszentrum-informatik/lanelet2-release.git
  1348. version: 1.1.1-1
  1349. source:
  1350. type: git
  1351. url: https://github.com/fzi-forschungszentrum-informatik/lanelet2.git
  1352. version: master
  1353. status: maintained
  1354. laser_geometry:
  1355. release:
  1356. tags:
  1357. release: release/dashing/{package}/{version}
  1358. url: https://github.com/ros2-gbp/laser_geometry-release.git
  1359. version: 2.0.0-0
  1360. source:
  1361. type: git
  1362. url: https://github.com/ros-perception/laser_geometry.git
  1363. version: dashing
  1364. status: maintained
  1365. laser_proc:
  1366. doc:
  1367. type: git
  1368. url: https://github.com/ros-perception/laser_proc.git
  1369. version: ros2-devel
  1370. release:
  1371. tags:
  1372. release: release/dashing/{package}/{version}
  1373. url: https://github.com/ros2-gbp/laser_proc-release.git
  1374. version: 1.0.2-1
  1375. source:
  1376. test_pull_requests: true
  1377. type: git
  1378. url: https://github.com/ros-perception/laser_proc.git
  1379. version: ros2-devel
  1380. status: maintained
  1381. launch:
  1382. doc:
  1383. type: git
  1384. url: https://github.com/ros2/launch.git
  1385. version: dashing
  1386. release:
  1387. packages:
  1388. - launch
  1389. - launch_testing
  1390. - launch_testing_ament_cmake
  1391. tags:
  1392. release: release/dashing/{package}/{version}
  1393. url: https://github.com/ros2-gbp/launch-release.git
  1394. version: 0.8.7-1
  1395. source:
  1396. test_pull_requests: true
  1397. type: git
  1398. url: https://github.com/ros2/launch.git
  1399. version: dashing
  1400. status: developed
  1401. launch_ros:
  1402. doc:
  1403. type: git
  1404. url: https://github.com/ros2/launch_ros.git
  1405. version: dashing
  1406. release:
  1407. packages:
  1408. - launch_ros
  1409. - launch_testing_ros
  1410. - ros2launch
  1411. tags:
  1412. release: release/dashing/{package}/{version}
  1413. url: https://github.com/ros2-gbp/launch_ros-release.git
  1414. version: 0.8.10-1
  1415. source:
  1416. test_pull_requests: true
  1417. type: git
  1418. url: https://github.com/ros2/launch_ros.git
  1419. version: dashing
  1420. status: developed
  1421. launch_ros_sandbox:
  1422. doc:
  1423. type: git
  1424. url: https://github.com/ros-security/launch_ros_sandbox.git
  1425. version: dashing-devel
  1426. release:
  1427. tags:
  1428. release: release/dashing/{package}/{version}
  1429. url: https://github.com/ros-security/launch_ros_sandbox-release.git
  1430. version: 0.0.2-4
  1431. source:
  1432. test_pull_requests: true
  1433. type: git
  1434. url: https://github.com/ros-security/launch_ros_sandbox.git
  1435. version: dashing-devel
  1436. status: developed
  1437. lex_common:
  1438. doc:
  1439. type: git
  1440. url: https://github.com/aws-robotics/lex-common.git
  1441. version: master
  1442. release:
  1443. tags:
  1444. release: release/dashing/{package}/{version}
  1445. url: https://github.com/aws-gbp/lex_common-release.git
  1446. version: 1.0.0-1
  1447. source:
  1448. type: git
  1449. url: https://github.com/aws-robotics/lex-common.git
  1450. version: master
  1451. status: maintained
  1452. lex_node:
  1453. doc:
  1454. type: git
  1455. url: https://github.com/aws-robotics/lex-ros2.git
  1456. version: master
  1457. release:
  1458. packages:
  1459. - lex_common_msgs
  1460. - lex_node
  1461. tags:
  1462. release: release/dashing/{package}/{version}
  1463. url: https://github.com/aws-gbp/lex_node-release.git
  1464. version: 3.1.0-1
  1465. source:
  1466. type: git
  1467. url: https://github.com/aws-robotics/lex-ros2.git
  1468. version: master
  1469. status: developed
  1470. lgsvl_msgs:
  1471. release:
  1472. tags:
  1473. release: release/dashing/{package}/{version}
  1474. url: https://github.com/lgsvl/lgsvl_msgs-release.git
  1475. version: 0.0.4-1
  1476. source:
  1477. type: git
  1478. url: https://github.com/lgsvl/lgsvl_msgs.git
  1479. version: dashing-devel
  1480. status: developed
  1481. librealsense:
  1482. doc:
  1483. type: git
  1484. url: https://github.com/IntelRealSense/librealsense.git
  1485. version: ros2debian
  1486. release:
  1487. packages:
  1488. - librealsense2
  1489. tags:
  1490. release: release/dashing/{package}/{version}
  1491. url: https://github.com/ros2-gbp/librealsense-release.git
  1492. version: 2.16.5-1
  1493. source:
  1494. type: git
  1495. url: https://github.com/IntelRealSense/librealsense.git
  1496. version: ros2debian
  1497. status: maintained
  1498. libyaml_vendor:
  1499. release:
  1500. tags:
  1501. release: release/dashing/{package}/{version}
  1502. url: https://github.com/ros2-gbp/libyaml_vendor-release.git
  1503. version: 1.0.0-1
  1504. source:
  1505. test_abi: true
  1506. type: git
  1507. url: https://github.com/ros2/libyaml_vendor.git
  1508. version: dashing
  1509. status: maintained
  1510. mapviz:
  1511. doc:
  1512. type: git
  1513. url: https://github.com/swri-robotics/mapviz.git
  1514. version: dashing-devel
  1515. release:
  1516. packages:
  1517. - mapviz
  1518. - mapviz_interfaces
  1519. - mapviz_plugins
  1520. - multires_image
  1521. - tile_map
  1522. tags:
  1523. release: release/dashing/{package}/{version}
  1524. url: https://github.com/swri-robotics-gbp/mapviz-release.git
  1525. version: 2.1.0-1
  1526. source:
  1527. test_pull_requests: true
  1528. type: git
  1529. url: https://github.com/swri-robotics/mapviz.git
  1530. version: dashing-devel
  1531. status: developed
  1532. marti_common:
  1533. doc:
  1534. type: git
  1535. url: https://github.com/swri-robotics/marti_common.git
  1536. version: dashing-devel
  1537. release:
  1538. packages:
  1539. - swri_console_util
  1540. - swri_dbw_interface
  1541. - swri_geometry_util
  1542. - swri_image_util
  1543. - swri_math_util
  1544. - swri_opencv_util
  1545. - swri_prefix_tools
  1546. - swri_roscpp
  1547. - swri_route_util
  1548. - swri_serial_util
  1549. - swri_system_util
  1550. - swri_transform_util
  1551. tags:
  1552. release: release/dashing/{package}/{version}
  1553. url: https://github.com/swri-robotics-gbp/marti_common-release.git
  1554. version: 3.3.2-1
  1555. source:
  1556. test_pull_requests: true
  1557. type: git
  1558. url: https://github.com/swri-robotics/marti_common.git
  1559. version: dashing-devel
  1560. status: developed
  1561. marti_messages:
  1562. doc:
  1563. type: git
  1564. url: https://github.com/swri-robotics/marti_messages.git
  1565. version: dashing-devel
  1566. release:
  1567. packages:
  1568. - marti_can_msgs
  1569. - marti_common_msgs
  1570. - marti_dbw_msgs
  1571. - marti_nav_msgs
  1572. - marti_perception_msgs
  1573. - marti_sensor_msgs
  1574. - marti_status_msgs
  1575. - marti_visualization_msgs
  1576. tags:
  1577. release: release/dashing/{package}/{version}
  1578. url: https://github.com/ros2-gbp/marti_messages-release.git
  1579. version: 1.2.0-1
  1580. source:
  1581. type: git
  1582. url: https://github.com/swri-robotics/marti_messages.git
  1583. version: dashing-devel
  1584. status: developed
  1585. message_filters:
  1586. doc:
  1587. type: git
  1588. url: https://github.com/ros2/message_filters.git
  1589. version: dashing
  1590. release:
  1591. tags:
  1592. release: release/dashing/{package}/{version}
  1593. url: https://github.com/ros2-gbp/ros2_message_filters-release.git
  1594. version: 3.1.3-1
  1595. source:
  1596. test_pull_requests: true
  1597. type: git
  1598. url: https://github.com/ros2/message_filters.git
  1599. version: dashing
  1600. status: developed
  1601. ml_classifiers:
  1602. doc:
  1603. type: git
  1604. url: https://github.com/astuff/ml_classifiers.git
  1605. version: master
  1606. release:
  1607. tags:
  1608. release: release/dashing/{package}/{version}
  1609. url: https://github.com/astuff/ml_classifiers-release.git
  1610. version: 1.0.1-1
  1611. source:
  1612. type: git
  1613. url: https://github.com/astuff/ml_classifiers.git
  1614. version: master
  1615. status: maintained
  1616. mrt_cmake_modules:
  1617. doc:
  1618. type: git
  1619. url: https://github.com/KIT-MRT/mrt_cmake_modules.git
  1620. version: master
  1621. release:
  1622. tags:
  1623. release: release/dashing/{package}/{version}
  1624. url: https://github.com/KIT-MRT/mrt_cmake_modules-release.git
  1625. version: 1.0.8-1
  1626. source:
  1627. type: git
  1628. url: https://github.com/KIT-MRT/mrt_cmake_modules.git
  1629. version: master
  1630. status: maintained
  1631. navigation2:
  1632. doc:
  1633. type: git
  1634. url: https://github.com/ros-planning/navigation2.git
  1635. version: dashing-devel
  1636. release:
  1637. packages:
  1638. - costmap_queue
  1639. - dwb_controller
  1640. - dwb_core
  1641. - dwb_critics
  1642. - dwb_msgs
  1643. - dwb_plugins
  1644. - nav2_amcl
  1645. - nav2_behavior_tree
  1646. - nav2_bringup
  1647. - nav2_bt_navigator
  1648. - nav2_common
  1649. - nav2_costmap_2d
  1650. - nav2_dwb_controller
  1651. - nav2_dynamic_params
  1652. - nav2_lifecycle_manager
  1653. - nav2_map_server
  1654. - nav2_msgs
  1655. - nav2_navfn_planner
  1656. - nav2_recoveries
  1657. - nav2_rviz_plugins
  1658. - nav2_system_tests
  1659. - nav2_util
  1660. - nav2_voxel_grid
  1661. - nav2_world_model
  1662. - nav_2d_msgs
  1663. - nav_2d_utils
  1664. - navigation2
  1665. tags:
  1666. release: release/dashing/{package}/{version}
  1667. url: https://github.com/SteveMacenski/navigation2-release.git
  1668. version: 0.2.6-1
  1669. source:
  1670. test_pull_requests: true
  1671. type: git
  1672. url: https://github.com/ros-planning/navigation2.git
  1673. version: dashing-devel
  1674. status: maintained
  1675. navigation_msgs:
  1676. doc:
  1677. type: git
  1678. url: https://github.com/ros-planning/navigation_msgs.git
  1679. version: ros2
  1680. release:
  1681. packages:
  1682. - map_msgs
  1683. - move_base_msgs
  1684. tags:
  1685. release: release/dashing/{package}/{version}
  1686. url: https://github.com/ros2-gbp/navigation_msgs-release.git
  1687. version: 2.0.2-1
  1688. source:
  1689. type: git
  1690. url: https://github.com/ros-planning/navigation_msgs.git
  1691. version: ros2
  1692. status: maintained
  1693. nmea_msgs:
  1694. doc:
  1695. type: git
  1696. url: https://github.com/ros-drivers/nmea_msgs.git
  1697. version: ros2
  1698. release:
  1699. tags:
  1700. release: release/dashing/{package}/{version}
  1701. url: https://github.com/ros2-gbp/nmea_msgs-release.git
  1702. version: 2.0.0-1
  1703. source:
  1704. test_pull_requests: true
  1705. type: git
  1706. url: https://github.com/ros-drivers/nmea_msgs.git
  1707. version: ros2
  1708. status: maintained
  1709. nonpersistent_voxel_layer:
  1710. doc:
  1711. type: git
  1712. url: https://github.com/SteveMacenski/nonpersistent_voxel_layer.git
  1713. version: dashing-devel
  1714. release:
  1715. tags:
  1716. release: release/dashing/{package}/{version}
  1717. url: https://github.com/SteveMacenski/nonpersistent_voxel_layer-release.git
  1718. version: 2.0.2-1
  1719. source:
  1720. test_pull_requests: true
  1721. type: git
  1722. url: https://github.com/SteveMacenski/nonpersistent_voxel_layer.git
  1723. version: dashing-devel
  1724. status: maintained
  1725. novatel_gps_driver:
  1726. doc:
  1727. type: git
  1728. url: https://github.com/swri-robotics/novatel_gps_driver.git
  1729. version: dashing-devel
  1730. release:
  1731. packages:
  1732. - novatel_gps_driver
  1733. - novatel_gps_msgs
  1734. tags:
  1735. release: release/dashing/{package}/{version}
  1736. url: https://github.com/swri-robotics-gbp/novatel_gps_driver-release.git
  1737. version: 4.1.0-1
  1738. source:
  1739. test_pull_requests: true
  1740. type: git
  1741. url: https://github.com/swri-robotics/novatel_gps_driver.git
  1742. version: dashing-devel
  1743. status: developed
  1744. object_msgs:
  1745. doc:
  1746. type: git
  1747. url: https://github.com/intel/ros2_object_msgs.git
  1748. version: 0.4.0
  1749. release:
  1750. tags:
  1751. release: release/dashing/{package}/{version}
  1752. url: https://github.com/ros2-gbp/ros2_object_msgs-release.git
  1753. version: 0.4.0-1
  1754. source:
  1755. type: git
  1756. url: https://github.com/intel/ros2_object_msgs.git
  1757. version: master
  1758. status: maintained
  1759. octomap:
  1760. doc:
  1761. type: git
  1762. url: https://github.com/octomap/octomap.git
  1763. version: v1.9.1
  1764. release:
  1765. packages:
  1766. - dynamic_edt_3d
  1767. - octomap
  1768. - octovis
  1769. tags:
  1770. release: release/dashing/{package}/{version}
  1771. url: https://github.com/ros-gbp/octomap-release.git
  1772. version: 1.9.3-1
  1773. source:
  1774. type: git
  1775. url: https://github.com/octomap/octomap.git
  1776. version: devel
  1777. status: maintained
  1778. ompl:
  1779. release:
  1780. tags:
  1781. release: release/dashing/{package}/{version}
  1782. url: https://github.com/ros-gbp/ompl-release.git
  1783. version: 1.4.2-2
  1784. optris_drivers:
  1785. doc:
  1786. type: git
  1787. url: https://github.com/evocortex/optris_drivers2.git
  1788. version: master
  1789. status: maintained
  1790. orocos_kinematics_dynamics:
  1791. doc:
  1792. type: git
  1793. url: https://github.com/ros2/orocos_kinematics_dynamics.git
  1794. version: dashing
  1795. release:
  1796. packages:
  1797. - orocos_kdl
  1798. tags:
  1799. release: release/dashing/{package}/{version}
  1800. url: https://github.com/ros2-gbp/orocos_kinematics_dynamics-release.git
  1801. version: 3.2.2-1
  1802. source:
  1803. test_pull_requests: true
  1804. type: git
  1805. url: https://github.com/ros2/orocos_kinematics_dynamics.git
  1806. version: dashing
  1807. status: maintained
  1808. osrf_pycommon:
  1809. doc:
  1810. type: git
  1811. url: https://github.com/osrf/osrf_pycommon.git
  1812. version: dashing
  1813. release:
  1814. tags:
  1815. release: release/dashing/{package}/{version}
  1816. url: https://github.com/ros2-gbp/osrf_pycommon-release.git
  1817. version: 0.1.9-1
  1818. source:
  1819. type: git
  1820. url: https://github.com/osrf/osrf_pycommon.git
  1821. version: dashing
  1822. status: maintained
  1823. osrf_testing_tools_cpp:
  1824. doc:
  1825. type: git
  1826. url: https://github.com/osrf/osrf_testing_tools_cpp.git
  1827. version: dashing
  1828. release:
  1829. packages:
  1830. - osrf_testing_tools_cpp
  1831. - test_osrf_testing_tools_cpp
  1832. tags:
  1833. release: release/dashing/{package}/{version}
  1834. url: https://github.com/ros2-gbp/osrf_testing_tools_cpp-release.git
  1835. version: 1.2.3-1
  1836. source:
  1837. test_pull_requests: true
  1838. type: git
  1839. url: https://github.com/osrf/osrf_testing_tools_cpp.git
  1840. version: dashing
  1841. status: developed
  1842. pacmod3:
  1843. doc:
  1844. type: git
  1845. url: https://github.com/astuff/pacmod3.git
  1846. version: dashing-devel
  1847. release:
  1848. tags:
  1849. release: release/dashing/{package}/{version}
  1850. url: https://github.com/astuff/pacmod3-release.git
  1851. version: 1.3.1-1
  1852. source:
  1853. type: git
  1854. url: https://github.com/astuff/pacmod3.git
  1855. version: dashing-devel
  1856. status: developed
  1857. pcl_msgs:
  1858. doc:
  1859. type: git
  1860. url: https://github.com/ros-perception/pcl_msgs.git
  1861. version: ros2
  1862. release:
  1863. tags:
  1864. release: release/dashing/{package}/{version}
  1865. url: https://github.com/ros2-gbp/pcl_msgs-release.git
  1866. version: 1.0.0-1
  1867. source:
  1868. type: git
  1869. url: https://github.com/ros-perception/pcl_msgs.git
  1870. version: ros2
  1871. people:
  1872. doc:
  1873. type: git
  1874. url: https://github.com/wg-perception/people.git
  1875. version: ros2
  1876. release:
  1877. packages:
  1878. - people_msgs
  1879. tags:
  1880. release: release/dashing/{package}/{version}
  1881. url: https://github.com/OSUrobotics/people-ros2-release.git
  1882. version: 1.3.0-1
  1883. source:
  1884. test_pull_requests: true
  1885. type: git
  1886. url: https://github.com/wg-perception/people.git
  1887. version: ros2
  1888. status: maintained
  1889. perception_pcl:
  1890. doc:
  1891. type: git
  1892. url: https://github.com/ros-perception/perception_pcl.git
  1893. version: dashing-devel
  1894. release:
  1895. packages:
  1896. - pcl_conversions
  1897. - perception_pcl
  1898. tags:
  1899. release: release/dashing/{package}/{version}
  1900. url: https://github.com/ros2-gbp/perception_pcl-release.git
  1901. version: 2.0.0-1
  1902. source:
  1903. test_pull_requests: true
  1904. type: git
  1905. url: https://github.com/ros-perception/perception_pcl.git
  1906. version: dashing-devel
  1907. status: developed
  1908. phidgets_drivers:
  1909. doc:
  1910. type: git
  1911. url: https://github.com/ros-drivers/phidgets_drivers.git
  1912. version: dashing
  1913. release:
  1914. packages:
  1915. - libphidget22
  1916. - phidgets_accelerometer
  1917. - phidgets_analog_inputs
  1918. - phidgets_api
  1919. - phidgets_digital_inputs
  1920. - phidgets_digital_outputs
  1921. - phidgets_drivers
  1922. - phidgets_gyroscope
  1923. - phidgets_high_speed_encoder
  1924. - phidgets_ik
  1925. - phidgets_magnetometer
  1926. - phidgets_motors
  1927. - phidgets_msgs
  1928. - phidgets_spatial
  1929. - phidgets_temperature
  1930. tags:
  1931. release: release/dashing/{package}/{version}
  1932. url: https://github.com/ros2-gbp/phidgets_drivers-release.git
  1933. version: 2.0.2-1
  1934. source:
  1935. test_pull_requests: true
  1936. type: git
  1937. url: https://github.com/ros-drivers/phidgets_drivers.git
  1938. version: dashing
  1939. status: maintained
  1940. pluginlib:
  1941. doc:
  1942. type: git
  1943. url: https://github.com/ros/pluginlib.git
  1944. version: dashing
  1945. release:
  1946. tags:
  1947. release: release/dashing/{package}/{version}
  1948. url: https://github.com/ros2-gbp/pluginlib-release.git
  1949. version: 2.3.3-1
  1950. source:
  1951. test_pull_requests: true
  1952. type: git
  1953. url: https://github.com/ros/pluginlib.git
  1954. version: dashing
  1955. status: maintained
  1956. poco_vendor:
  1957. release:
  1958. tags:
  1959. release: release/dashing/{package}/{version}
  1960. url: https://github.com/ros2-gbp/poco_vendor-release.git
  1961. version: 1.2.1-1
  1962. source:
  1963. test_pull_requests: true
  1964. type: git
  1965. url: https://github.com/ros2/poco_vendor.git
  1966. version: dashing
  1967. status: maintained
  1968. px4_msgs:
  1969. release:
  1970. tags:
  1971. release: release/dashing/{package}/{version}
  1972. url: https://github.com/PX4/px4_msgs2-release.git
  1973. version: 2.0.1-1
  1974. status: developed
  1975. py_trees:
  1976. doc:
  1977. type: git
  1978. url: https://github.com/splintered-reality/py_trees.git
  1979. version: release/1.2.x
  1980. release:
  1981. tags:
  1982. release: release/dashing/{package}/{version}
  1983. url: https://github.com/stonier/py_trees-release.git
  1984. version: 1.3.0-1
  1985. source:
  1986. type: git
  1987. url: https://github.com/splintered-reality/py_trees.git
  1988. version: release/1.2.x
  1989. status: maintained
  1990. py_trees_js:
  1991. doc:
  1992. type: git
  1993. url: https://github.com/splintered-reality/py_trees_js.git
  1994. version: release/0.4.x
  1995. release:
  1996. tags:
  1997. release: release/dashing/{package}/{version}
  1998. url: https://github.com/stonier/py_trees_js-release.git
  1999. version: 0.5.0-1
  2000. source:
  2001. test_pull_requests: true
  2002. type: git
  2003. url: https://github.com/splintered-reality/py_trees_js.git
  2004. version: release/0.5.x
  2005. status: developed
  2006. py_trees_ros:
  2007. doc:
  2008. type: git
  2009. url: https://github.com/splintered-reality/py_trees_ros.git
  2010. version: release/1.1.x
  2011. release:
  2012. tags:
  2013. release: release/dashing/{package}/{version}
  2014. url: https://github.com/stonier/py_trees_ros-release.git
  2015. version: 1.2.1-2
  2016. source:
  2017. type: git
  2018. url: https://github.com/splintered-reality/py_trees_ros.git
  2019. version: release/1.2.x
  2020. status: developed
  2021. py_trees_ros_interfaces:
  2022. doc:
  2023. type: git
  2024. url: https://github.com/splintered-reality/py_trees_ros_interfaces.git
  2025. version: release/1.1.x
  2026. release:
  2027. tags:
  2028. release: release/dashing/{package}/{version}
  2029. url: https://github.com/stonier/py_trees_ros_interfaces-release.git
  2030. version: 1.2.0-1
  2031. source:
  2032. test_pull_requests: true
  2033. type: git
  2034. url: https://github.com/splintered-reality/py_trees_ros_interfaces.git
  2035. version: devel
  2036. status: developed
  2037. py_trees_ros_tutorials:
  2038. doc:
  2039. type: git
  2040. url: https://github.com/splintered-reality/py_trees_ros_tutorials.git
  2041. version: release/1.0.x
  2042. release:
  2043. tags:
  2044. release: release/dashing/{package}/{version}
  2045. url: https://github.com/stonier/py_trees_ros_tutorials-release.git
  2046. version: 1.0.5-1
  2047. source:
  2048. type: git
  2049. url: https://github.com/splintered-reality/py_trees_ros_tutorials.git
  2050. version: release/1.0.x
  2051. status: developed
  2052. py_trees_ros_viewer:
  2053. doc:
  2054. type: git
  2055. url: https://github.com/splintered-reality/py_trees_ros_viewer.git
  2056. version: release/0.1.x
  2057. release:
  2058. tags:
  2059. release: release/dashing/{package}/{version}
  2060. url: https://github.com/stonier/py_trees_ros_viewer-release.git
  2061. version: 0.1.3-1
  2062. source:
  2063. type: git
  2064. url: https://github.com/splintered-reality/py_trees_ros_viewer.git
  2065. version: release/0.1.x
  2066. status: developed
  2067. python_qt_binding:
  2068. doc:
  2069. type: git
  2070. url: https://github.com/ros-visualization/python_qt_binding.git
  2071. version: crystal-devel
  2072. release:
  2073. tags:
  2074. release: release/dashing/{package}/{version}
  2075. url: https://github.com/ros2-gbp/python_qt_binding-release.git
  2076. version: 1.0.2-1
  2077. source:
  2078. test_pull_requests: true
  2079. type: git
  2080. url: https://github.com/ros-visualization/python_qt_binding.git
  2081. version: crystal-devel
  2082. status: maintained
  2083. qt_gui_core:
  2084. doc:
  2085. type: git
  2086. url: https://github.com/ros-visualization/qt_gui_core.git
  2087. version: crystal-devel
  2088. release:
  2089. packages:
  2090. - qt_dotgraph
  2091. - qt_gui
  2092. - qt_gui_app
  2093. - qt_gui_core
  2094. - qt_gui_cpp
  2095. - qt_gui_py_common
  2096. tags:
  2097. release: release/dashing/{package}/{version}
  2098. url: https://github.com/ros2-gbp/qt_gui_core-release.git
  2099. version: 1.0.9-1
  2100. source:
  2101. test_pull_requests: true
  2102. type: git
  2103. url: https://github.com/ros-visualization/qt_gui_core.git
  2104. version: crystal-devel
  2105. status: maintained
  2106. raptor_dbw_ros2:
  2107. release:
  2108. packages:
  2109. - raptor_can_dbc_parser
  2110. - raptor_dbw_can
  2111. - raptor_dbw_joystick
  2112. - raptor_dbw_msgs
  2113. - raptor_pdu
  2114. - raptor_pdu_msgs
  2115. tags:
  2116. release: release/dashing/{package}/{version}
  2117. url: https://github.com/NewEagleRaptor/raptor-dbw-ros2-release.git
  2118. version: 1.0.0-1
  2119. source:
  2120. type: git
  2121. url: https://github.com/NewEagleRaptor/raptor-dbw-ros2.git
  2122. version: dashing
  2123. status: developed
  2124. raspimouse2:
  2125. doc:
  2126. type: git
  2127. url: https://github.com/rt-net/raspimouse2.git
  2128. version: dashing-devel
  2129. release:
  2130. packages:
  2131. - raspimouse
  2132. - raspimouse_msgs
  2133. tags:
  2134. release: release/dashing/{package}/{version}
  2135. url: https://github.com/rt-net/raspimouse2-release.git
  2136. version: 1.0.1-1
  2137. source:
  2138. test_pull_requests: true
  2139. type: git
  2140. url: https://github.com/rt-net/raspimouse2.git
  2141. version: dashing-devel
  2142. status: developed
  2143. rc_common_msgs:
  2144. doc:
  2145. type: git
  2146. url: https://github.com/roboception/rc_common_msgs_ros2.git
  2147. version: master
  2148. release:
  2149. tags:
  2150. release: release/dashing/{package}/{version}
  2151. url: https://github.com/roboception-gbp/rc_common_msgs_ros2-release.git
  2152. version: 0.5.3-1
  2153. source:
  2154. test_pull_requests: true
  2155. type: git
  2156. url: https://github.com/roboception/rc_common_msgs_ros2.git
  2157. version: master
  2158. status: developed
  2159. rc_dynamics_api:
  2160. doc:
  2161. type: git
  2162. url: https://github.com/roboception/rc_dynamics_api.git
  2163. version: master
  2164. release:
  2165. tags:
  2166. release: release/dashing/{package}/{version}
  2167. url: https://github.com/roboception-gbp/rc_dynamics_api-release.git
  2168. version: 0.10.2-1
  2169. source:
  2170. test_pull_requests: true
  2171. type: git
  2172. url: https://github.com/roboception/rc_dynamics_api.git
  2173. version: master
  2174. status: developed
  2175. rc_genicam_api:
  2176. doc:
  2177. type: git
  2178. url: https://github.com/roboception/rc_genicam_api.git
  2179. version: master
  2180. release:
  2181. tags:
  2182. release: release/dashing/{package}/{version}
  2183. url: https://github.com/roboception-gbp/rc_genicam_api-release.git
  2184. version: 2.4.4-1
  2185. source:
  2186. test_pull_requests: true
  2187. type: git
  2188. url: https://github.com/roboception/rc_genicam_api.git
  2189. version: master
  2190. status: developed
  2191. rc_reason_clients:
  2192. doc:
  2193. type: git
  2194. url: https://github.com/roboception/rc_reason_clients_ros2.git
  2195. version: master
  2196. release:
  2197. packages:
  2198. - rc_reason_clients
  2199. - rc_reason_msgs
  2200. tags:
  2201. release: release/dashing/{package}/{version}
  2202. url: https://github.com/roboception-gbp/rc_reason_clients-release.git
  2203. version: 0.2.1-1
  2204. source:
  2205. test_pull_requests: true
  2206. type: git
  2207. url: https://github.com/roboception/rc_reason_clients_ros2.git
  2208. version: master
  2209. status: developed
  2210. rcdiscover:
  2211. doc:
  2212. type: git
  2213. url: https://github.com/roboception/rcdiscover.git
  2214. version: master
  2215. release:
  2216. tags:
  2217. release: release/dashing/{package}/{version}
  2218. url: https://github.com/roboception-gbp/rcdiscover-release.git
  2219. version: 1.0.4-1
  2220. source:
  2221. test_pull_requests: true
  2222. type: git
  2223. url: https://github.com/roboception/rcdiscover.git
  2224. version: master
  2225. status: developed
  2226. rcl:
  2227. doc:
  2228. type: git
  2229. url: https://github.com/ros2/rcl.git
  2230. version: dashing
  2231. release:
  2232. packages:
  2233. - rcl
  2234. - rcl_action
  2235. - rcl_lifecycle
  2236. - rcl_yaml_param_parser
  2237. tags:
  2238. release: release/dashing/{package}/{version}
  2239. url: https://github.com/ros2-gbp/rcl-release.git
  2240. version: 0.7.10-1
  2241. source:
  2242. test_abi: true
  2243. test_pull_requests: true
  2244. type: git
  2245. url: https://github.com/ros2/rcl.git
  2246. version: dashing
  2247. status: developed
  2248. rcl_interfaces:
  2249. doc:
  2250. type: git
  2251. url: https://github.com/ros2/rcl_interfaces.git
  2252. version: dashing
  2253. release:
  2254. packages:
  2255. - action_msgs
  2256. - builtin_interfaces
  2257. - composition_interfaces
  2258. - lifecycle_msgs
  2259. - rcl_interfaces
  2260. - rosgraph_msgs
  2261. - test_msgs
  2262. tags:
  2263. release: release/dashing/{package}/{version}
  2264. url: https://github.com/ros2-gbp/rcl_interfaces-release.git
  2265. version: 0.7.4-1
  2266. source:
  2267. test_pull_requests: true
  2268. type: git
  2269. url: https://github.com/ros2/rcl_interfaces.git
  2270. version: dashing
  2271. status: developed
  2272. rcl_logging:
  2273. doc:
  2274. type: git
  2275. url: https://github.com/ros2/rcl_logging.git
  2276. version: dashing
  2277. release:
  2278. packages:
  2279. - rcl_logging_log4cxx
  2280. - rcl_logging_noop
  2281. tags:
  2282. release: release/dashing/{package}/{version}
  2283. url: https://github.com/ros2-gbp/rcl_logging-release.git
  2284. version: 0.2.1-1
  2285. source:
  2286. test_pull_requests: true
  2287. type: git
  2288. url: https://github.com/ros2/rcl_logging.git
  2289. version: dashing
  2290. status: developed
  2291. rclc:
  2292. doc:
  2293. type: git
  2294. url: https://github.com/ros2/rclc.git
  2295. version: foxy
  2296. release:
  2297. packages:
  2298. - rclc
  2299. - rclc_examples
  2300. - rclc_lifecycle
  2301. tags:
  2302. release: release/dashing/{package}/{version}
  2303. url: https://github.com/ros2-gbp/rclc-release.git
  2304. version: 1.0.0-1
  2305. source:
  2306. test_pull_requests: true
  2307. type: git
  2308. url: https://github.com/ros2/rclc.git
  2309. version: dashing
  2310. status: developed
  2311. rclcpp:
  2312. doc:
  2313. type: git
  2314. url: https://github.com/ros2/rclcpp.git
  2315. version: dashing
  2316. release:
  2317. packages:
  2318. - rclcpp
  2319. - rclcpp_action
  2320. - rclcpp_components
  2321. - rclcpp_lifecycle
  2322. tags:
  2323. release: release/dashing/{package}/{version}
  2324. url: https://github.com/ros2-gbp/rclcpp-release.git
  2325. version: 0.7.16-1
  2326. source:
  2327. test_abi: true
  2328. test_pull_requests: true
  2329. type: git
  2330. url: https://github.com/ros2/rclcpp.git
  2331. version: dashing
  2332. status: developed
  2333. rclpy:
  2334. doc:
  2335. type: git
  2336. url: https://github.com/ros2/rclpy.git
  2337. version: dashing
  2338. release:
  2339. tags:
  2340. release: release/dashing/{package}/{version}
  2341. url: https://github.com/ros2-gbp/rclpy-release.git
  2342. version: 0.7.11-1
  2343. source:
  2344. test_abi: true
  2345. test_pull_requests: true
  2346. type: git
  2347. url: https://github.com/ros2/rclpy.git
  2348. version: dashing
  2349. status: developed
  2350. rcpputils:
  2351. doc:
  2352. type: git
  2353. url: https://github.com/ros2/rcpputils.git
  2354. version: dashing
  2355. release:
  2356. tags:
  2357. release: release/dashing/{package}/{version}
  2358. url: https://github.com/ros2-gbp/rcpputils-release.git
  2359. version: 0.1.1-1
  2360. source:
  2361. test_pull_requests: true
  2362. type: git
  2363. url: https://github.com/ros2/rcpputils.git
  2364. version: dashing
  2365. status: developed
  2366. rcutils:
  2367. doc:
  2368. type: git
  2369. url: https://github.com/ros2/rcutils.git
  2370. version: dashing
  2371. release:
  2372. tags:
  2373. release: release/dashing/{package}/{version}
  2374. url: https://github.com/ros2-gbp/rcutils-release.git
  2375. version: 0.7.6-1
  2376. source:
  2377. test_pull_requests: true
  2378. type: git
  2379. url: https://github.com/ros2/rcutils.git
  2380. version: dashing
  2381. status: developed
  2382. realtime_support:
  2383. doc:
  2384. type: git
  2385. url: https://github.com/ros2/realtime_support.git
  2386. version: dashing
  2387. release:
  2388. packages:
  2389. - rttest
  2390. - tlsf_cpp
  2391. tags:
  2392. release: release/dashing/{package}/{version}
  2393. url: https://github.com/ros2-gbp/realtime_support-release.git
  2394. version: 0.7.1-1
  2395. source:
  2396. test_pull_requests: true
  2397. type: git
  2398. url: https://github.com/ros2/realtime_support.git
  2399. version: dashing
  2400. status: maintained
  2401. realtime_tools:
  2402. doc:
  2403. type: git
  2404. url: https://github.com/ros-controls/realtime_tools.git
  2405. version: dashing-devel
  2406. release:
  2407. tags:
  2408. release: release/dashing/{package}/{version}
  2409. url: https://github.com/ros-gbp/realtime_tools-release.git
  2410. version: 2.0.0-1
  2411. source:
  2412. type: git
  2413. url: https://github.com/ros-controls/realtime_tools.git
  2414. version: dashing-devel
  2415. status: maintained
  2416. resource_retriever:
  2417. doc:
  2418. type: git
  2419. url: https://github.com/ros/resource_retriever.git
  2420. version: dashing
  2421. release:
  2422. packages:
  2423. - libcurl_vendor
  2424. - resource_retriever
  2425. tags:
  2426. release: release/dashing/{package}/{version}
  2427. url: https://github.com/ros2-gbp/resource_retriever-release.git
  2428. version: 2.1.3-1
  2429. source:
  2430. test_pull_requests: true
  2431. type: git
  2432. url: https://github.com/ros/resource_retriever.git
  2433. version: dashing
  2434. status: maintained
  2435. rmw:
  2436. doc:
  2437. type: git
  2438. url: https://github.com/ros2/rmw.git
  2439. version: dashing
  2440. release:
  2441. packages:
  2442. - rmw
  2443. - rmw_implementation_cmake
  2444. tags:
  2445. release: release/dashing/{package}/{version}
  2446. url: https://github.com/ros2-gbp/rmw-release.git
  2447. version: 0.7.2-1
  2448. source:
  2449. test_pull_requests: true
  2450. type: git
  2451. url: https://github.com/ros2/rmw.git
  2452. version: dashing
  2453. status: developed
  2454. rmw_connext:
  2455. doc:
  2456. type: git
  2457. url: https://github.com/ros2/rmw_connext.git
  2458. version: dashing
  2459. release:
  2460. packages:
  2461. - rmw_connext_cpp
  2462. - rmw_connext_shared_cpp
  2463. tags:
  2464. release: release/dashing/{package}/{version}
  2465. url: https://github.com/ros2-gbp/rmw_connext-release.git
  2466. version: 0.7.6-1
  2467. source:
  2468. test_pull_requests: true
  2469. type: git
  2470. url: https://github.com/ros2/rmw_connext.git
  2471. version: dashing
  2472. status: developed
  2473. rmw_cyclonedds:
  2474. release:
  2475. packages:
  2476. - cyclonedds_cmake_module
  2477. - rmw_cyclonedds_cpp
  2478. tags:
  2479. release: release/dashing/{package}/{version}
  2480. url: https://github.com/ros2-gbp/rmw_cyclonedds-release.git
  2481. version: 0.7.0-1
  2482. source:
  2483. test_pull_requests: true
  2484. type: git
  2485. url: https://github.com/ros2/rmw_cyclonedds.git
  2486. version: dashing-eloquent
  2487. status: developed
  2488. rmw_fastrtps:
  2489. doc:
  2490. type: git
  2491. url: https://github.com/ros2/rmw_fastrtps.git
  2492. version: dashing
  2493. release:
  2494. packages:
  2495. - rmw_fastrtps_cpp
  2496. - rmw_fastrtps_dynamic_cpp
  2497. - rmw_fastrtps_shared_cpp
  2498. tags:
  2499. release: release/dashing/{package}/{version}
  2500. url: https://github.com/ros2-gbp/rmw_fastrtps-release.git
  2501. version: 0.7.8-1
  2502. source:
  2503. test_pull_requests: true
  2504. type: git
  2505. url: https://github.com/ros2/rmw_fastrtps.git
  2506. version: dashing
  2507. status: developed
  2508. rmw_gurumdds:
  2509. doc:
  2510. type: git
  2511. url: https://github.com/ros2/rmw_gurumdds.git
  2512. version: dashing
  2513. release:
  2514. packages:
  2515. - rmw_gurumdds_cpp
  2516. - rmw_gurumdds_shared_cpp
  2517. tags:
  2518. release: release/dashing/{package}/{version}
  2519. url: https://github.com/ros2-gbp/rmw_gurumdds-release.git
  2520. version: 0.7.12-1
  2521. source:
  2522. type: git
  2523. url: https://github.com/ros2/rmw_gurumdds.git
  2524. version: dashing
  2525. status: developed
  2526. rmw_implementation:
  2527. doc:
  2528. type: git
  2529. url: https://github.com/ros2/rmw_implementation.git
  2530. version: dashing
  2531. release:
  2532. tags:
  2533. release: release/dashing/{package}/{version}
  2534. url: https://github.com/ros2-gbp/rmw_implementation-release.git
  2535. version: 0.7.2-1
  2536. source:
  2537. test_pull_requests: true
  2538. type: git
  2539. url: https://github.com/ros2/rmw_implementation.git
  2540. version: dashing
  2541. status: developed
  2542. rmw_opensplice:
  2543. doc:
  2544. type: git
  2545. url: https://github.com/ros2/rmw_opensplice.git
  2546. version: dashing
  2547. release:
  2548. packages:
  2549. - rmw_opensplice_cpp
  2550. tags:
  2551. release: release/dashing/{package}/{version}
  2552. url: https://github.com/ros2-gbp/rmw_opensplice-release.git
  2553. version: 0.7.3-1
  2554. source:
  2555. test_pull_requests: true
  2556. type: git
  2557. url: https://github.com/ros2/rmw_opensplice.git
  2558. version: dashing
  2559. status: developed
  2560. robot_localization:
  2561. doc:
  2562. type: git
  2563. url: https://github.com/cra-ros-pkg/robot_localization.git
  2564. version: dashing-devel
  2565. release:
  2566. tags:
  2567. release: release/dashing/{package}/{version}
  2568. url: https://github.com/cra-ros-pkg/robot_localization-release.git
  2569. version: 3.0.3-1
  2570. source:
  2571. test_pull_requests: true
  2572. type: git
  2573. url: https://github.com/cra-ros-pkg/robot_localization.git
  2574. version: dashing-devel
  2575. status: maintained
  2576. robot_state_publisher:
  2577. doc:
  2578. type: git
  2579. url: https://github.com/ros/robot_state_publisher.git
  2580. version: dashing
  2581. release:
  2582. tags:
  2583. release: release/dashing/{package}/{version}
  2584. url: https://github.com/ros2-gbp/robot_state_publisher-release.git
  2585. version: 2.2.5-1
  2586. source:
  2587. test_pull_requests: true
  2588. type: git
  2589. url: https://github.com/ros/robot_state_publisher.git
  2590. version: dashing
  2591. status: maintained
  2592. ros1_bridge:
  2593. doc:
  2594. type: git
  2595. url: https://github.com/ros2/ros1_bridge.git
  2596. version: dashing
  2597. release:
  2598. tags:
  2599. release: release/dashing/{package}/{version}
  2600. url: https://github.com/ros2-gbp/ros1_bridge-release.git
  2601. version: 0.7.9-1
  2602. source:
  2603. test_commits: false
  2604. type: git
  2605. url: https://github.com/ros2/ros1_bridge.git
  2606. version: dashing
  2607. status: developed
  2608. ros2-lgsvl-bridge:
  2609. release:
  2610. packages:
  2611. - lgsvl_bridge
  2612. tags:
  2613. release: release/dashing/{package}/{version}
  2614. url: https://github.com/lgsvl/ros2-lgsvl-bridge-release.git
  2615. version: 0.3.0-1
  2616. source:
  2617. type: git
  2618. url: https://github.com/lgsvl/ros2-lgsvl-bridge.git
  2619. version: master
  2620. status: developed
  2621. ros2_control:
  2622. doc:
  2623. type: git
  2624. url: https://github.com/ros-controls/ros2_control.git
  2625. version: dashing
  2626. release:
  2627. packages:
  2628. - controller_interface
  2629. - controller_manager
  2630. - controller_parameter_server
  2631. - hardware_interface
  2632. - ros2_control
  2633. - test_robot_hardware
  2634. tags:
  2635. release: release/dashing/{package}/{version}
  2636. url: https://github.com/ros2-gbp/ros2_control-release.git
  2637. version: 0.0.1-1
  2638. source:
  2639. test_pull_requests: true
  2640. type: git
  2641. url: https://github.com/ros-controls/ros2_control.git
  2642. version: dashing
  2643. status: developed
  2644. ros2_controllers:
  2645. doc:
  2646. type: git
  2647. url: https://github.com/ros-controls/ros2_controllers.git
  2648. version: dashing
  2649. release:
  2650. packages:
  2651. - ros_controllers
  2652. tags:
  2653. release: release/dashing/{package}/{version}
  2654. url: https://github.com/ros2-gbp/ros2_controllers-release.git
  2655. version: 0.0.1-2
  2656. source:
  2657. test_pull_requests: true
  2658. type: git
  2659. url: https://github.com/ros-controls/ros2_controllers.git
  2660. version: dashing
  2661. status: developed
  2662. ros2_intel_realsense:
  2663. doc:
  2664. type: git
  2665. url: https://github.com/intel/ros2_intel_realsense.git
  2666. version: master
  2667. release:
  2668. packages:
  2669. - realsense_camera_msgs
  2670. - realsense_ros2_camera
  2671. tags:
  2672. release: release/dashing/{package}/{version}
  2673. url: https://github.com/ros2-gbp/ros2_intel_realsense-release.git
  2674. version: 2.0.4-2
  2675. source:
  2676. type: git
  2677. url: https://github.com/intel/ros2_intel_realsense.git
  2678. version: master
  2679. status: maintained
  2680. ros2_object_analytics:
  2681. doc:
  2682. type: git
  2683. url: https://github.com/intel/ros2_object_analytics.git
  2684. version: master
  2685. release:
  2686. packages:
  2687. - object_analytics_msgs
  2688. - object_analytics_node
  2689. - object_analytics_rviz
  2690. tags:
  2691. release: release/dashing/{package}/{version}
  2692. url: https://github.com/ros2-gbp/ros2_object_analytics-release.git
  2693. version: 0.5.4-2
  2694. source:
  2695. type: git
  2696. url: https://github.com/intel/ros2_object_analytics.git
  2697. version: master
  2698. status: maintained
  2699. ros2_ouster_driver:
  2700. doc:
  2701. type: git
  2702. url: https://github.com/SteveMacenski/ros2_ouster_drivers.git
  2703. version: dashing-devel
  2704. release:
  2705. packages:
  2706. - ouster_msgs
  2707. - ros2_ouster
  2708. tags:
  2709. release: release/dashing/{package}/{version}
  2710. url: https://github.com/SteveMacenski/ros2_ouster_drivers-release.git
  2711. version: 0.0.2-1
  2712. source:
  2713. test_pull_requests: true
  2714. type: git
  2715. url: https://github.com/SteveMacenski/ros2_ouster_drivers.git
  2716. version: dashing-devel
  2717. status: developed
  2718. ros2_tracing:
  2719. doc:
  2720. type: git
  2721. url: https://gitlab.com/ros-tracing/ros2_tracing.git
  2722. version: dashing
  2723. release:
  2724. packages:
  2725. - ros2trace
  2726. - tracetools
  2727. - tracetools_launch
  2728. - tracetools_read
  2729. - tracetools_test
  2730. - tracetools_trace
  2731. tags:
  2732. release: release/dashing/{package}/{version}
  2733. url: https://github.com/ros2-gbp/ros2_tracing-release.git
  2734. version: 0.2.8-1
  2735. source:
  2736. type: git
  2737. url: https://gitlab.com/ros-tracing/ros2_tracing.git
  2738. version: dashing
  2739. status: developed
  2740. ros2cli:
  2741. doc:
  2742. type: git
  2743. url: https://github.com/ros2/ros2cli.git
  2744. version: dashing
  2745. release:
  2746. packages:
  2747. - ros2action
  2748. - ros2cli
  2749. - ros2component
  2750. - ros2lifecycle
  2751. - ros2msg
  2752. - ros2multicast
  2753. - ros2node
  2754. - ros2param
  2755. - ros2pkg
  2756. - ros2run
  2757. - ros2service
  2758. - ros2srv
  2759. - ros2topic
  2760. tags:
  2761. release: release/dashing/{package}/{version}
  2762. url: https://github.com/ros2-gbp/ros2cli-release.git
  2763. version: 0.7.11-1
  2764. source:
  2765. test_pull_requests: true
  2766. type: git
  2767. url: https://github.com/ros2/ros2cli.git
  2768. version: dashing
  2769. status: developed
  2770. ros_canopen:
  2771. release:
  2772. packages:
  2773. - can_msgs
  2774. tags:
  2775. release: release/dashing/{package}/{version}
  2776. url: https://github.com/ros-industrial-release/ros_canopen-release.git
  2777. version: 2.0.0-1
  2778. source:
  2779. type: git
  2780. url: https://github.com/ros-industrial/ros_canopen.git
  2781. version: dashing-devel
  2782. status: developed
  2783. ros_environment:
  2784. release:
  2785. tags:
  2786. release: release/dashing/{package}/{version}
  2787. url: https://github.com/ros2-gbp/ros_environment-release.git
  2788. version: 2.3.0-1
  2789. source:
  2790. type: git
  2791. url: https://github.com/ros/ros_environment.git
  2792. version: dashing
  2793. status: maintained
  2794. ros_monitoring_msgs:
  2795. doc:
  2796. type: git
  2797. url: https://github.com/aws-robotics/monitoringmessages-ros2.git
  2798. version: master
  2799. release:
  2800. tags:
  2801. release: release/dashing/{package}/{version}
  2802. url: https://github.com/aws-gbp/ros_monitoring_msgs-release.git
  2803. version: 2.0.0-1
  2804. source:
  2805. type: git
  2806. url: https://github.com/aws-robotics/monitoringmessages-ros2.git
  2807. version: master
  2808. status: developed
  2809. ros_testing:
  2810. release:
  2811. packages:
  2812. - ros2test
  2813. - ros_testing
  2814. tags:
  2815. release: release/dashing/{package}/{version}
  2816. url: https://github.com/ros2-gbp/ros_testing-release.git
  2817. version: 0.1.1-1
  2818. source:
  2819. test_pull_requests: true
  2820. type: git
  2821. url: https://github.com/ros2/ros_testing.git
  2822. version: dashing
  2823. status: developed
  2824. ros_workspace:
  2825. release:
  2826. tags:
  2827. release: release/dashing/{package}/{version}
  2828. url: https://github.com/ros2-gbp/ros_workspace-release.git
  2829. version: 0.7.2-1
  2830. source:
  2831. type: git
  2832. url: https://github.com/ros2/ros_workspace.git
  2833. version: latest
  2834. status: developed
  2835. rosauth:
  2836. doc:
  2837. type: git
  2838. url: https://github.com/GT-RAIL/rosauth.git
  2839. version: ros2
  2840. release:
  2841. tags:
  2842. release: release/dashing/{package}/{version}
  2843. url: https://github.com/ros2-gbp/rosauth-release.git
  2844. version: 2.0.1-1
  2845. source:
  2846. test_pull_requests: true
  2847. type: git
  2848. url: https://github.com/GT-RAIL/rosauth.git
  2849. version: ros2
  2850. status: maintained
  2851. rosbag2:
  2852. doc:
  2853. type: git
  2854. url: https://github.com/ros2/rosbag2.git
  2855. version: dashing
  2856. release:
  2857. packages:
  2858. - ros2bag
  2859. - rosbag2
  2860. - rosbag2_converter_default_plugins
  2861. - rosbag2_storage
  2862. - rosbag2_storage_default_plugins
  2863. - rosbag2_test_common
  2864. - rosbag2_tests
  2865. - rosbag2_transport
  2866. - shared_queues_vendor
  2867. - sqlite3_vendor
  2868. tags:
  2869. release: release/dashing/{package}/{version}
  2870. url: https://github.com/ros2-gbp/rosbag2-release.git
  2871. version: 0.1.8-1
  2872. source:
  2873. test_pull_requests: true
  2874. type: git
  2875. url: https://github.com/ros2/rosbag2.git
  2876. version: dashing
  2877. status: maintained
  2878. rosbag2_bag_v2:
  2879. doc:
  2880. type: git
  2881. url: https://github.com/ros2/rosbag2_bag_v2.git
  2882. version: master
  2883. release:
  2884. packages:
  2885. - ros1_rosbag_storage_vendor
  2886. - rosbag2_bag_v2_plugins
  2887. tags:
  2888. release: release/dashing/{package}/{version}
  2889. url: https://github.com/ros2-gbp/rosbag2_bag_v2-release.git
  2890. version: 0.0.6-2
  2891. source:
  2892. test_commits: false
  2893. type: git
  2894. url: https://github.com/ros2/rosbag2_bag_v2.git
  2895. version: master
  2896. status: developed
  2897. rosbridge_suite:
  2898. doc:
  2899. type: git
  2900. url: https://github.com/RobotWebTools/rosbridge_suite.git
  2901. version: ros2
  2902. release:
  2903. packages:
  2904. - rosapi
  2905. - rosbridge_library
  2906. - rosbridge_msgs
  2907. - rosbridge_server
  2908. - rosbridge_suite
  2909. tags:
  2910. release: release/dashing/{package}/{version}
  2911. url: https://github.com/ros2-gbp/rosbridge_suite-release.git
  2912. version: 1.0.2-1
  2913. source:
  2914. test_pull_requests: true
  2915. type: git
  2916. url: https://github.com/RobotWebTools/rosbridge_suite.git
  2917. version: ros2
  2918. status: maintained
  2919. rosidl:
  2920. doc:
  2921. type: git
  2922. url: https://github.com/ros2/rosidl.git
  2923. version: dashing
  2924. release:
  2925. packages:
  2926. - rosidl_adapter
  2927. - rosidl_cmake
  2928. - rosidl_generator_c
  2929. - rosidl_generator_cpp
  2930. - rosidl_parser
  2931. - rosidl_typesupport_interface
  2932. - rosidl_typesupport_introspection_c
  2933. - rosidl_typesupport_introspection_cpp
  2934. tags:
  2935. release: release/dashing/{package}/{version}
  2936. url: https://github.com/ros2-gbp/rosidl-release.git
  2937. version: 0.7.10-1
  2938. source:
  2939. test_pull_requests: true
  2940. type: git
  2941. url: https://github.com/ros2/rosidl.git
  2942. version: dashing
  2943. status: developed
  2944. rosidl_dds:
  2945. doc:
  2946. type: git
  2947. url: https://github.com/ros2/rosidl_dds.git
  2948. version: dashing
  2949. release:
  2950. packages:
  2951. - rosidl_generator_dds_idl
  2952. tags:
  2953. release: release/dashing/{package}/{version}
  2954. url: https://github.com/ros2-gbp/rosidl_dds-release.git
  2955. version: 0.7.1-1
  2956. source:
  2957. test_pull_requests: true
  2958. type: git
  2959. url: https://github.com/ros2/rosidl_dds.git
  2960. version: dashing
  2961. status: developed
  2962. rosidl_defaults:
  2963. doc:
  2964. type: git
  2965. url: https://github.com/ros2/rosidl_defaults.git
  2966. version: dashing
  2967. release:
  2968. packages:
  2969. - rosidl_default_generators
  2970. - rosidl_default_runtime
  2971. tags:
  2972. release: release/dashing/{package}/{version}
  2973. url: https://github.com/ros2-gbp/rosidl_defaults-release.git
  2974. version: 0.7.0-1
  2975. source:
  2976. test_pull_requests: true
  2977. type: git
  2978. url: https://github.com/ros2/rosidl_defaults.git
  2979. version: dashing
  2980. status: developed
  2981. rosidl_python:
  2982. doc:
  2983. type: git
  2984. url: https://github.com/ros2/rosidl_python.git
  2985. version: dashing
  2986. release:
  2987. packages:
  2988. - python_cmake_module
  2989. - rosidl_generator_py
  2990. - rosidl_runtime_py
  2991. tags:
  2992. release: release/dashing/{package}/{version}
  2993. url: https://github.com/ros2-gbp/rosidl_python-release.git
  2994. version: 0.7.11-1
  2995. source:
  2996. test_pull_requests: true
  2997. type: git
  2998. url: https://github.com/ros2/rosidl_python.git
  2999. version: dashing
  3000. status: developed
  3001. rosidl_typesupport:
  3002. doc:
  3003. type: git
  3004. url: https://github.com/ros2/rosidl_typesupport.git
  3005. version: dashing
  3006. release:
  3007. packages:
  3008. - rosidl_typesupport_c
  3009. - rosidl_typesupport_cpp
  3010. tags:
  3011. release: release/dashing/{package}/{version}
  3012. url: https://github.com/ros2-gbp/rosidl_typesupport-release.git
  3013. version: 0.7.1-1
  3014. source:
  3015. test_pull_requests: true
  3016. type: git
  3017. url: https://github.com/ros2/rosidl_typesupport.git
  3018. version: dashing
  3019. status: developed
  3020. rosidl_typesupport_connext:
  3021. doc:
  3022. type: git
  3023. url: https://github.com/ros2/rosidl_typesupport_connext.git
  3024. version: dashing
  3025. release:
  3026. packages:
  3027. - connext_cmake_module
  3028. - rosidl_typesupport_connext_c
  3029. - rosidl_typesupport_connext_cpp
  3030. tags:
  3031. release: release/dashing/{package}/{version}
  3032. url: https://github.com/ros2-gbp/rosidl_typesupport_connext-release.git
  3033. version: 0.7.3-1
  3034. source:
  3035. type: git
  3036. url: https://github.com/ros2/rosidl_typesupport_connext.git
  3037. version: dashing
  3038. status: developed
  3039. rosidl_typesupport_fastrtps:
  3040. doc:
  3041. type: git
  3042. url: https://github.com/ros2/rosidl_typesupport_fastrtps.git
  3043. version: dashing
  3044. release:
  3045. packages:
  3046. - fastrtps_cmake_module
  3047. - rosidl_typesupport_fastrtps_c
  3048. - rosidl_typesupport_fastrtps_cpp
  3049. tags:
  3050. release: release/dashing/{package}/{version}
  3051. url: https://github.com/ros2-gbp/rosidl_typesupport_fastrtps-release.git
  3052. version: 0.7.2-1
  3053. source:
  3054. test_pull_requests: true
  3055. type: git
  3056. url: https://github.com/ros2/rosidl_typesupport_fastrtps.git
  3057. version: dashing
  3058. status: developed
  3059. rosidl_typesupport_gurumdds:
  3060. doc:
  3061. type: git
  3062. url: https://github.com/ros2/rosidl_typesupport_gurumdds.git
  3063. version: dashing
  3064. release:
  3065. packages:
  3066. - gurumdds_cmake_module
  3067. tags:
  3068. release: release/dashing/{package}/{version}
  3069. url: https://github.com/ros2-gbp/rosidl_typesupport_gurumdds-release.git
  3070. version: 0.7.8-1
  3071. source:
  3072. type: git
  3073. url: https://github.com/ros2/rosidl_typesupport_gurumdds.git
  3074. version: dashing
  3075. status: developed
  3076. rosidl_typesupport_opensplice:
  3077. doc:
  3078. type: git
  3079. url: https://github.com/ros2/rosidl_typesupport_opensplice.git
  3080. version: dashing
  3081. release:
  3082. packages:
  3083. - opensplice_cmake_module
  3084. - rosidl_typesupport_opensplice_c
  3085. - rosidl_typesupport_opensplice_cpp
  3086. tags:
  3087. release: release/dashing/{package}/{version}
  3088. url: https://github.com/ros2-gbp/rosidl_typesupport_opensplice-release.git
  3089. version: 0.7.3-1
  3090. source:
  3091. type: git
  3092. url: https://github.com/ros2/rosidl_typesupport_opensplice.git
  3093. version: dashing
  3094. status: developed
  3095. rqt:
  3096. doc:
  3097. type: git
  3098. url: https://github.com/ros-visualization/rqt.git
  3099. version: crystal-devel
  3100. release:
  3101. packages:
  3102. - rqt
  3103. - rqt_gui
  3104. - rqt_gui_cpp
  3105. - rqt_gui_py
  3106. - rqt_py_common
  3107. tags:
  3108. release: release/dashing/{package}/{version}
  3109. url: https://github.com/ros2-gbp/rqt-release.git
  3110. version: 1.0.7-1
  3111. source:
  3112. test_pull_requests: true
  3113. type: git
  3114. url: https://github.com/ros-visualization/rqt.git
  3115. version: crystal-devel
  3116. status: maintained
  3117. rqt_action:
  3118. doc:
  3119. type: git
  3120. url: https://github.com/ros-visualization/rqt_action.git
  3121. version: crystal-devel
  3122. release:
  3123. tags:
  3124. release: release/dashing/{package}/{version}
  3125. url: https://github.com/ros2-gbp/rqt_action-release.git
  3126. version: 1.0.1-1
  3127. source:
  3128. type: git
  3129. url: https://github.com/ros-visualization/rqt_action.git
  3130. version: crystal-devel
  3131. status: maintained
  3132. rqt_common_plugins:
  3133. doc:
  3134. type: git
  3135. url: https://github.com/ros-visualization/rqt_common_plugins.git
  3136. version: dashing-devel
  3137. release:
  3138. tags:
  3139. release: release/dashing/{package}/{version}
  3140. url: https://github.com/ros2-gbp/rqt_common_plugins-release.git
  3141. version: 1.0.0-1
  3142. source:
  3143. type: git
  3144. url: https://github.com/ros-visualization/rqt_common_plugins.git
  3145. version: dashing-devel
  3146. status: maintained
  3147. rqt_console:
  3148. doc:
  3149. type: git
  3150. url: https://github.com/ros-visualization/rqt_console.git
  3151. version: dashing-devel
  3152. release:
  3153. tags:
  3154. release: release/dashing/{package}/{version}
  3155. url: https://github.com/ros2-gbp/rqt_console-release.git
  3156. version: 1.1.1-1
  3157. source:
  3158. type: git
  3159. url: https://github.com/ros-visualization/rqt_console.git
  3160. version: dashing-devel
  3161. status: maintained
  3162. rqt_graph:
  3163. doc:
  3164. type: git
  3165. url: https://github.com/ros-visualization/rqt_graph.git
  3166. version: dashing-devel
  3167. release:
  3168. tags:
  3169. release: release/dashing/{package}/{version}
  3170. url: https://github.com/ros2-gbp/rqt_graph-release.git
  3171. version: 1.0.5-1
  3172. source:
  3173. test_pull_requests: true
  3174. type: git
  3175. url: https://github.com/ros-visualization/rqt_graph.git
  3176. version: dashing-devel
  3177. status: maintained
  3178. rqt_image_view:
  3179. doc:
  3180. type: git
  3181. url: https://github.com/ros-visualization/rqt_image_view.git
  3182. version: crystal-devel
  3183. release:
  3184. tags:
  3185. release: release/dashing/{package}/{version}
  3186. url: https://github.com/ros2-gbp/rqt_image_view-release.git
  3187. version: 1.0.5-1
  3188. source:
  3189. test_pull_requests: true
  3190. type: git
  3191. url: https://github.com/ros-visualization/rqt_image_view.git
  3192. version: crystal-devel
  3193. status: maintained
  3194. rqt_msg:
  3195. doc:
  3196. type: git
  3197. url: https://github.com/ros-visualization/rqt_msg.git
  3198. version: crystal-devel
  3199. release:
  3200. tags:
  3201. release: release/dashing/{package}/{version}
  3202. url: https://github.com/ros2-gbp/rqt_msg-release.git
  3203. version: 1.0.2-1
  3204. source:
  3205. type: git
  3206. url: https://github.com/ros-visualization/rqt_msg.git
  3207. version: crystal-devel
  3208. status: maintained
  3209. rqt_plot:
  3210. doc:
  3211. type: git
  3212. url: https://github.com/ros-visualization/rqt_plot.git
  3213. version: crystal-devel
  3214. release:
  3215. tags:
  3216. release: release/dashing/{package}/{version}
  3217. url: https://github.com/ros2-gbp/rqt_plot-release.git
  3218. version: 1.0.7-1
  3219. source:
  3220. type: git
  3221. url: https://github.com/ros-visualization/rqt_plot.git
  3222. version: crystal-devel
  3223. status: maintained
  3224. rqt_publisher:
  3225. doc:
  3226. type: git
  3227. url: https://github.com/ros-visualization/rqt_publisher.git
  3228. version: dashing-devel
  3229. release:
  3230. tags:
  3231. release: release/dashing/{package}/{version}
  3232. url: https://github.com/ros2-gbp/rqt_publisher-release.git
  3233. version: 1.1.0-1
  3234. source:
  3235. type: git
  3236. url: https://github.com/ros-visualization/rqt_publisher.git
  3237. version: dashing-devel
  3238. status: maintained
  3239. rqt_py_console:
  3240. doc:
  3241. type: git
  3242. url: https://github.com/ros-visualization/rqt_py_console.git
  3243. version: crystal-devel
  3244. release:
  3245. tags:
  3246. release: release/dashing/{package}/{version}
  3247. url: https://github.com/ros2-gbp/rqt_py_console-release.git
  3248. version: 1.0.0-1
  3249. source:
  3250. type: git
  3251. url: https://github.com/ros-visualization/rqt_py_console.git
  3252. version: crystal-devel
  3253. status: maintained
  3254. rqt_reconfigure:
  3255. doc:
  3256. type: git
  3257. url: https://github.com/ros-visualization/rqt_reconfigure.git
  3258. version: dashing
  3259. release:
  3260. tags:
  3261. release: release/dashing/{package}/{version}
  3262. url: https://github.com/ros2-gbp/rqt_reconfigure-release.git
  3263. version: 1.0.7-1
  3264. source:
  3265. test_pull_requests: true
  3266. type: git
  3267. url: https://github.com/ros-visualization/rqt_reconfigure.git
  3268. version: dashing
  3269. status: maintained
  3270. rqt_robot_monitor:
  3271. doc:
  3272. type: git
  3273. url: https://github.com/ros-visualization/rqt_robot_monitor.git
  3274. version: ros2
  3275. release:
  3276. tags:
  3277. release: release/dashing/{package}/{version}
  3278. url: https://github.com/ros2-gbp/rqt_robot_monitor-release.git
  3279. version: 1.0.4-1
  3280. source:
  3281. type: git
  3282. url: https://github.com/ros-visualization/rqt_robot_monitor.git
  3283. version: dashing-devel
  3284. status: maintained
  3285. rqt_robot_steering:
  3286. doc:
  3287. type: git
  3288. url: https://github.com/ros-visualization/rqt_robot_steering.git
  3289. version: dashing-devel
  3290. release:
  3291. tags:
  3292. release: release/dashing/{package}/{version}
  3293. url: https://github.com/ros2-gbp/rqt_robot_steering-release.git
  3294. version: 1.0.0-1
  3295. source:
  3296. type: git
  3297. url: https://github.com/ros-visualization/rqt_robot_steering.git
  3298. version: dashing-devel
  3299. status: maintained
  3300. rqt_service_caller:
  3301. doc:
  3302. type: git
  3303. url: https://github.com/ros-visualization/rqt_service_caller.git
  3304. version: crystal-devel
  3305. release:
  3306. tags:
  3307. release: release/dashing/{package}/{version}
  3308. url: https://github.com/ros2-gbp/rqt_service_caller-release.git
  3309. version: 1.0.3-1
  3310. source:
  3311. type: git
  3312. url: https://github.com/ros-visualization/rqt_service_caller.git
  3313. version: crystal-devel
  3314. status: maintained
  3315. rqt_shell:
  3316. doc:
  3317. type: git
  3318. url: https://github.com/ros-visualization/rqt_shell.git
  3319. version: crystal-devel
  3320. release:
  3321. tags:
  3322. release: release/dashing/{package}/{version}
  3323. url: https://github.com/ros2-gbp/rqt_shell-release.git
  3324. version: 1.0.0-1
  3325. source:
  3326. type: git
  3327. url: https://github.com/ros-visualization/rqt_shell.git
  3328. version: crystal-devel
  3329. status: maintained
  3330. rqt_srv:
  3331. doc:
  3332. type: git
  3333. url: https://github.com/ros-visualization/rqt_srv.git
  3334. version: crystal-devel
  3335. release:
  3336. tags:
  3337. release: release/dashing/{package}/{version}
  3338. url: https://github.com/ros2-gbp/rqt_srv-release.git
  3339. version: 1.0.1-1
  3340. source:
  3341. type: git
  3342. url: https://github.com/ros-visualization/rqt_srv.git
  3343. version: crystal-devel
  3344. status: maintained
  3345. rqt_top:
  3346. doc:
  3347. type: git
  3348. url: https://github.com/ros-visualization/rqt_top.git
  3349. version: crystal-devel
  3350. release:
  3351. tags:
  3352. release: release/dashing/{package}/{version}
  3353. url: https://github.com/ros2-gbp/rqt_top-release.git
  3354. version: 1.0.0-1
  3355. source:
  3356. type: git
  3357. url: https://github.com/ros-visualization/rqt_top.git
  3358. version: crystal-devel
  3359. status: maintained
  3360. rqt_topic:
  3361. doc:
  3362. type: git
  3363. url: https://github.com/ros-visualization/rqt_topic.git
  3364. version: dashing-devel
  3365. release:
  3366. tags:
  3367. release: release/dashing/{package}/{version}
  3368. url: https://github.com/ros2-gbp/rqt_topic-release.git
  3369. version: 1.0.0-1
  3370. source:
  3371. type: git
  3372. url: https://github.com/ros-visualization/rqt_topic.git
  3373. version: dashing-devel
  3374. status: maintained
  3375. rt_usb_9axisimu_driver:
  3376. doc:
  3377. type: git
  3378. url: https://github.com/rt-net/rt_usb_9axisimu_driver.git
  3379. version: dashing-devel
  3380. release:
  3381. tags:
  3382. release: release/dashing/{package}/{version}
  3383. url: https://github.com/rt-net-gbp/rt_usb_9axisimu_driver-release.git
  3384. version: 2.0.0-2
  3385. source:
  3386. test_pull_requests: true
  3387. type: git
  3388. url: https://github.com/rt-net/rt_usb_9axisimu_driver.git
  3389. version: dashing-devel
  3390. status: developed
  3391. rviz:
  3392. doc:
  3393. type: git
  3394. url: https://github.com/ros2/rviz.git
  3395. version: dashing
  3396. release:
  3397. packages:
  3398. - rviz2
  3399. - rviz_assimp_vendor
  3400. - rviz_common
  3401. - rviz_default_plugins
  3402. - rviz_ogre_vendor
  3403. - rviz_rendering
  3404. - rviz_rendering_tests
  3405. - rviz_visual_testing_framework
  3406. tags:
  3407. release: release/dashing/{package}/{version}
  3408. url: https://github.com/ros2-gbp/rviz-release.git
  3409. version: 6.1.8-1
  3410. source:
  3411. test_pull_requests: true
  3412. type: git
  3413. url: https://github.com/ros2/rviz.git
  3414. version: dashing
  3415. status: maintained
  3416. sick_scan2:
  3417. release:
  3418. tags:
  3419. release: release/dashing/{package}/{version}
  3420. url: https://github.com/SICKAG/sick_scan2-release.git
  3421. version: 0.1.4-1
  3422. slam_toolbox:
  3423. doc:
  3424. type: git
  3425. url: https://github.com/SteveMacenski/slam_toolbox.git
  3426. version: dashing-devel
  3427. release:
  3428. tags:
  3429. release: release/dashing/{package}/{version}
  3430. url: https://github.com/SteveMacenski/slam_toolbox-release.git
  3431. version: 2.0.4-1
  3432. source:
  3433. test_pull_requests: true
  3434. type: git
  3435. url: https://github.com/SteveMacenski/slam_toolbox.git
  3436. version: dashing-devel
  3437. status: developed
  3438. slide_show:
  3439. release:
  3440. tags:
  3441. release: release/dashing/{package}/{version}
  3442. url: https://github.com/ros2-gbp/slide_show-release.git
  3443. version: 0.1.0-1
  3444. source:
  3445. type: git
  3446. url: https://github.com/ros2/slide_show.git
  3447. version: master
  3448. status: developed
  3449. sophus:
  3450. release:
  3451. tags:
  3452. release: release/dashing/{package}/{version}
  3453. url: https://github.com/yujinrobot-release/sophus-release.git
  3454. version: 1.0.2-0
  3455. status: maintained
  3456. spatio_temporal_voxel_layer:
  3457. doc:
  3458. type: git
  3459. url: https://github.com/SteveMacenski/spatio_temporal_voxel_layer.git
  3460. version: dashing-devel
  3461. release:
  3462. tags:
  3463. release: release/dashing/{package}/{version}
  3464. url: https://github.com/SteveMacenski/spatio_temporal_voxel_layer-release.git
  3465. version: 2.0.2-1
  3466. source:
  3467. test_pull_requests: true
  3468. type: git
  3469. url: https://github.com/SteveMacenski/spatio_temporal_voxel_layer.git
  3470. version: dashing-devel
  3471. status: developed
  3472. sros2:
  3473. doc:
  3474. type: git
  3475. url: https://github.com/ros2/sros2.git
  3476. version: dashing
  3477. release:
  3478. packages:
  3479. - sros2
  3480. - sros2_cmake
  3481. tags:
  3482. release: release/dashing/{package}/{version}
  3483. url: https://github.com/ros2-gbp/sros2-release.git
  3484. version: 0.7.2-1
  3485. source:
  3486. test_pull_requests: true
  3487. type: git
  3488. url: https://github.com/ros2/sros2.git
  3489. version: dashing
  3490. status: developed
  3491. swri_console:
  3492. doc:
  3493. type: git
  3494. url: https://github.com/swri-robotics/swri_console.git
  3495. version: dashing-devel
  3496. release:
  3497. tags:
  3498. release: release/dashing/{package}/{version}
  3499. url: https://github.com/swri-robotics-gbp/swri_console-release.git
  3500. version: 2.0.0-1
  3501. source:
  3502. test_pull_requests: true
  3503. type: git
  3504. url: https://github.com/swri-robotics/swri_console.git
  3505. version: dashing-devel
  3506. status: developed
  3507. system_modes:
  3508. doc:
  3509. type: git
  3510. url: https://github.com/micro-ROS/system_modes.git
  3511. version: dashing
  3512. release:
  3513. packages:
  3514. - system_modes
  3515. - system_modes_examples
  3516. tags:
  3517. release: release/dashing/{package}/{version}
  3518. url: https://github.com/microROS/system_modes-release.git
  3519. version: 0.6.0-2
  3520. source:
  3521. type: git
  3522. url: https://github.com/micro-ROS/system_modes.git
  3523. version: dashing
  3524. status: developed
  3525. teleop_tools:
  3526. doc:
  3527. type: git
  3528. url: https://github.com/ros-teleop/teleop_tools.git
  3529. version: dashing-devel
  3530. release:
  3531. packages:
  3532. - joy_teleop
  3533. - key_teleop
  3534. - mouse_teleop
  3535. - teleop_tools
  3536. - teleop_tools_msgs
  3537. tags:
  3538. release: release/dashing/{package}/{version}
  3539. url: https://github.com/ros-gbp/teleop_tools-release.git
  3540. version: 1.1.0-1
  3541. source:
  3542. type: git
  3543. url: https://github.com/ros-teleop/teleop_tools.git
  3544. version: dashing-devel
  3545. status: maintained
  3546. teleop_twist_joy:
  3547. doc:
  3548. type: git
  3549. url: https://github.com/ros2/teleop_twist_joy.git
  3550. version: dashing
  3551. release:
  3552. tags:
  3553. release: release/dashing/{package}/{version}
  3554. url: https://github.com/ros2-gbp/teleop_twist_joy-release.git
  3555. version: 2.2.1-1
  3556. source:
  3557. test_pull_requests: true
  3558. type: git
  3559. url: https://github.com/ros2/teleop_twist_joy.git
  3560. version: dashing
  3561. status: maintained
  3562. teleop_twist_keyboard:
  3563. doc:
  3564. type: git
  3565. url: https://github.com/ros2/teleop_twist_keyboard.git
  3566. version: dashing
  3567. release:
  3568. tags:
  3569. release: release/dashing/{package}/{version}
  3570. url: https://github.com/ros2-gbp/teleop_twist_keyboard-release.git
  3571. version: 2.3.2-1
  3572. source:
  3573. test_pull_requests: true
  3574. type: git
  3575. url: https://github.com/ros2/teleop_twist_keyboard.git
  3576. version: dashing
  3577. status: maintained
  3578. test_interface_files:
  3579. doc:
  3580. type: git
  3581. url: https://github.com/ros2/test_interface_files.git
  3582. version: dashing
  3583. release:
  3584. tags:
  3585. release: release/dashing/{package}/{version}
  3586. url: https://github.com/ros2-gbp/test_interface_files-release.git
  3587. version: 0.7.1-1
  3588. source:
  3589. type: git
  3590. url: https://github.com/ros2/test_interface_files.git
  3591. version: dashing
  3592. status: maintained
  3593. tinydir_vendor:
  3594. doc:
  3595. type: git
  3596. url: https://github.com/ros2/tinydir_vendor.git
  3597. version: dashing
  3598. release:
  3599. tags:
  3600. release: release/dashing/{package}/{version}
  3601. url: https://github.com/ros2-gbp/tinydir_vendor-release.git
  3602. version: 1.1.0-1
  3603. source:
  3604. test_pull_requests: true
  3605. type: git
  3606. url: https://github.com/ros2/tinydir_vendor.git
  3607. version: dashing
  3608. status: maintained
  3609. tinyxml2_vendor:
  3610. release:
  3611. tags:
  3612. release: release/dashing/{package}/{version}
  3613. url: https://github.com/ros2-gbp/tinyxml2_vendor-release.git
  3614. version: 0.6.1-1
  3615. source:
  3616. type: git
  3617. url: https://github.com/ros2/tinyxml2_vendor.git
  3618. version: dashing
  3619. status: maintained
  3620. tinyxml_vendor:
  3621. release:
  3622. tags:
  3623. release: release/dashing/{package}/{version}
  3624. url: https://github.com/ros2-gbp/tinyxml_vendor-release.git
  3625. version: 0.7.0-1
  3626. source:
  3627. type: git
  3628. url: https://github.com/ros2/tinyxml_vendor.git
  3629. version: dashing
  3630. status: maintained
  3631. tlsf:
  3632. doc:
  3633. type: git
  3634. url: https://github.com/ros2/tlsf.git
  3635. version: dashing
  3636. release:
  3637. tags:
  3638. release: release/dashing/{package}/{version}
  3639. url: https://github.com/ros2-gbp/tlsf-release.git
  3640. version: 0.5.0-1
  3641. source:
  3642. test_pull_requests: true
  3643. type: git
  3644. url: https://github.com/ros2/tlsf.git
  3645. version: dashing
  3646. status: maintained
  3647. tracetools_analysis:
  3648. doc:
  3649. type: git
  3650. url: https://gitlab.com/ros-tracing/tracetools_analysis.git
  3651. version: dashing
  3652. release:
  3653. packages:
  3654. - ros2trace_analysis
  3655. - tracetools_analysis
  3656. tags:
  3657. release: release/dashing/{package}/{version}
  3658. url: https://gitlab.com/ros-tracing/tracetools_analysis-release.git
  3659. version: 0.2.1-1
  3660. source:
  3661. type: git
  3662. url: https://gitlab.com/ros-tracing/tracetools_analysis.git
  3663. version: dashing
  3664. status: developed
  3665. transport_drivers:
  3666. doc:
  3667. type: git
  3668. url: https://github.com/ros-drivers/transport_drivers.git
  3669. version: dashing
  3670. release:
  3671. packages:
  3672. - serial_driver
  3673. - udp_driver
  3674. tags:
  3675. release: release/dashing/{package}/{version}
  3676. url: https://github.com/ros-drivers-gbp/transport_drivers-release.git
  3677. version: 0.0.6-4
  3678. source:
  3679. type: git
  3680. url: https://github.com/ros-drivers/transport_drivers.git
  3681. version: dashing
  3682. status: developed
  3683. tts:
  3684. doc:
  3685. type: git
  3686. url: https://github.com/aws-robotics/tts-ros2.git
  3687. version: master
  3688. release:
  3689. packages:
  3690. - tts
  3691. - tts_interfaces
  3692. tags:
  3693. release: release/dashing/{package}/{version}
  3694. url: https://github.com/aws-gbp/tts-release.git
  3695. version: 2.0.2-1
  3696. source:
  3697. type: git
  3698. url: https://github.com/aws-robotics/tts-ros2.git
  3699. version: master
  3700. status: developed
  3701. turtlebot3:
  3702. doc:
  3703. type: git
  3704. url: https://github.com/ROBOTIS-GIT/turtlebot3.git
  3705. version: dashing-devel
  3706. release:
  3707. packages:
  3708. - turtlebot3
  3709. - turtlebot3_bringup
  3710. - turtlebot3_cartographer
  3711. - turtlebot3_description
  3712. - turtlebot3_example
  3713. - turtlebot3_navigation2
  3714. - turtlebot3_node
  3715. - turtlebot3_teleop
  3716. tags:
  3717. release: release/dashing/{package}/{version}
  3718. url: https://github.com/robotis-ros2-release/turtlebot3-release.git
  3719. version: 2.1.1-2
  3720. source:
  3721. type: git
  3722. url: https://github.com/ROBOTIS-GIT/turtlebot3.git
  3723. version: dashing-devel
  3724. status: developed
  3725. turtlebot3_msgs:
  3726. doc:
  3727. type: git
  3728. url: https://github.com/ROBOTIS-GIT/turtlebot3_msgs.git
  3729. version: dashing-devel
  3730. release:
  3731. tags:
  3732. release: release/dashing/{package}/{version}
  3733. url: https://github.com/robotis-ros2-release/turtlebot3_msgs-release.git
  3734. version: 2.2.1-2
  3735. source:
  3736. type: git
  3737. url: https://github.com/ROBOTIS-GIT/turtlebot3_msgs.git
  3738. version: dashing-devel
  3739. status: developed
  3740. turtlebot3_simulations:
  3741. doc:
  3742. type: git
  3743. url: https://github.com/ROBOTIS-GIT/turtlebot3_simulations.git
  3744. version: dashing-devel
  3745. release:
  3746. packages:
  3747. - turtlebot3_fake_node
  3748. - turtlebot3_gazebo
  3749. - turtlebot3_simulations
  3750. tags:
  3751. release: release/dashing/{package}/{version}
  3752. url: https://github.com/robotis-ros2-release/turtlebot3_simulations-release.git
  3753. version: 2.2.2-1
  3754. source:
  3755. type: git
  3756. url: https://github.com/ROBOTIS-GIT/turtlebot3_simulations.git
  3757. version: dashing-devel
  3758. status: developed
  3759. turtlesim:
  3760. doc:
  3761. type: git
  3762. url: https://github.com/ros/ros_tutorials.git
  3763. version: dashing-devel
  3764. release:
  3765. tags:
  3766. release: release/dashing/{package}/{version}
  3767. url: https://github.com/ros2-gbp/ros_tutorials-release.git
  3768. version: 1.0.3-1
  3769. source:
  3770. test_abi: true
  3771. test_pull_requests: true
  3772. type: git
  3773. url: https://github.com/ros/ros_tutorials.git
  3774. version: dashing-devel
  3775. status: maintained
  3776. tvm_vendor:
  3777. release:
  3778. tags:
  3779. release: release/dashing/{package}/{version}
  3780. url: https://github.com/autowarefoundation/tvm_vendor-release.git
  3781. version: 0.7.2-1
  3782. source:
  3783. type: git
  3784. url: https://github.com/autowarefoundation/tvm_vendor.git
  3785. version: main
  3786. status: maintained
  3787. udp_msgs:
  3788. release:
  3789. tags:
  3790. release: release/dashing/{package}/{version}
  3791. url: https://github.com/flynneva/udp_msgs-release.git
  3792. version: 0.0.2-1
  3793. source:
  3794. type: git
  3795. url: https://github.com/flynneva/udp_msgs.git
  3796. version: devel
  3797. status: maintained
  3798. uncrustify_vendor:
  3799. doc:
  3800. type: git
  3801. url: https://github.com/ament/uncrustify_vendor.git
  3802. version: dashing
  3803. release:
  3804. tags:
  3805. release: release/dashing/{package}/{version}
  3806. url: https://github.com/ros2-gbp/uncrustify_vendor-release.git
  3807. version: 1.2.0-1
  3808. source:
  3809. type: git
  3810. url: https://github.com/ament/uncrustify_vendor.git
  3811. version: dashing
  3812. status: maintained
  3813. unique_identifier_msgs:
  3814. doc:
  3815. type: git
  3816. url: https://github.com/ros2/unique_identifier_msgs.git
  3817. version: dashing
  3818. release:
  3819. tags:
  3820. release: release/dashing/{package}/{version}
  3821. url: https://github.com/ros2-gbp/unique_identifier_msgs-release.git
  3822. version: 2.1.1-1
  3823. source:
  3824. test_pull_requests: true
  3825. type: git
  3826. url: https://github.com/ros2/unique_identifier_msgs.git
  3827. version: dashing
  3828. status: developed
  3829. urdf:
  3830. doc:
  3831. type: git
  3832. url: https://github.com/ros2/urdf.git
  3833. version: dashing
  3834. release:
  3835. tags:
  3836. release: release/dashing/{package}/{version}
  3837. url: https://github.com/ros2-gbp/urdf-release.git
  3838. version: 2.2.0-1
  3839. source:
  3840. test_pull_requests: true
  3841. type: git
  3842. url: https://github.com/ros2/urdf.git
  3843. version: dashing
  3844. status: maintained
  3845. urdf_parser_py:
  3846. doc:
  3847. type: git
  3848. url: https://github.com/ros/urdf_parser_py.git
  3849. version: ros2
  3850. release:
  3851. packages:
  3852. - urdfdom_py
  3853. tags:
  3854. release: release/dashing/{package}/{version}
  3855. url: https://github.com/ros2-gbp/urdfdom_py-release.git
  3856. version: 1.0.0-1
  3857. source:
  3858. test_pull_requests: true
  3859. type: git
  3860. url: https://github.com/ros/urdf_parser_py.git
  3861. version: ros2
  3862. status: maintained
  3863. urdfdom:
  3864. doc:
  3865. type: git
  3866. url: https://github.com/ros/urdfdom.git
  3867. version: dashing
  3868. release:
  3869. tags:
  3870. release: release/dashing/{package}/{version}
  3871. url: https://github.com/ros2-gbp/urdfdom-release.git
  3872. version: 2.2.0-1
  3873. source:
  3874. test_pull_requests: true
  3875. type: git
  3876. url: https://github.com/ros/urdfdom.git
  3877. version: dashing
  3878. status: maintained
  3879. urdfdom_headers:
  3880. doc:
  3881. type: git
  3882. url: https://github.com/ros/urdfdom_headers.git
  3883. version: dashing
  3884. release:
  3885. tags:
  3886. release: release/dashing/{package}/{version}
  3887. url: https://github.com/ros2-gbp/urdfdom_headers-release.git
  3888. version: 1.0.4-1
  3889. source:
  3890. type: git
  3891. url: https://github.com/ros/urdfdom_headers.git
  3892. version: dashing
  3893. status: developed
  3894. urg_c:
  3895. doc:
  3896. type: git
  3897. url: https://github.com/ros-drivers/urg_c.git
  3898. version: ros2-devel
  3899. release:
  3900. tags:
  3901. release: release/dashing/{package}/{version}
  3902. url: https://github.com/ros2-gbp/urg_c-release.git
  3903. version: 1.0.4000-1
  3904. source:
  3905. type: git
  3906. url: https://github.com/ros-drivers/urg_c.git
  3907. version: ros2-devel
  3908. status: maintained
  3909. urg_node:
  3910. doc:
  3911. type: git
  3912. url: https://github.com/ros-drivers/urg_node.git
  3913. version: ros2-devel
  3914. release:
  3915. tags:
  3916. release: release/dashing/{package}/{version}
  3917. url: https://github.com/ros2-gbp/urg_node-release.git
  3918. version: 1.0.1-1
  3919. source:
  3920. type: git
  3921. url: https://github.com/ros-drivers/urg_node.git
  3922. version: ros2-devel
  3923. status: maintained
  3924. urg_node_msgs:
  3925. doc:
  3926. type: git
  3927. url: https://github.com/ros-drivers/urg_node_msgs.git
  3928. version: master
  3929. release:
  3930. tags:
  3931. release: release/dashing/{package}/{version}
  3932. url: https://github.com/ros2-gbp/urg_node_msgs-release.git
  3933. version: 1.0.0-1
  3934. source:
  3935. type: git
  3936. url: https://github.com/ros-drivers/urg_node_msgs.git
  3937. version: master
  3938. status: maintained
  3939. v4l2_camera:
  3940. doc:
  3941. type: git
  3942. url: https://gitlab.com/boldhearts/ros2_v4l2_camera.git
  3943. version: master
  3944. release:
  3945. tags:
  3946. release: release/dashing/{package}/{version}
  3947. url: https://gitlab.com/boldhearts/releases/ros2_v4l2_camera-release.git
  3948. version: 0.1.2-1
  3949. source:
  3950. type: git
  3951. url: https://gitlab.com/boldhearts/ros2_v4l2_camera.git
  3952. version: master
  3953. status: developed
  3954. variants:
  3955. doc:
  3956. type: git
  3957. url: https://github.com/ros2/variants.git
  3958. version: dashing
  3959. release:
  3960. packages:
  3961. - desktop
  3962. - ros_base
  3963. - ros_core
  3964. tags:
  3965. release: release/dashing/{package}/{version}
  3966. url: https://github.com/ros2-gbp/variants-release.git
  3967. version: 0.7.4-1
  3968. source:
  3969. test_pull_requests: true
  3970. type: git
  3971. url: https://github.com/ros2/variants.git
  3972. version: dashing
  3973. status: developed
  3974. velodyne:
  3975. doc:
  3976. type: git
  3977. url: https://github.com/ros-drivers/velodyne.git
  3978. version: dashing-devel
  3979. release:
  3980. packages:
  3981. - velodyne
  3982. - velodyne_driver
  3983. - velodyne_laserscan
  3984. - velodyne_msgs
  3985. - velodyne_pointcloud
  3986. tags:
  3987. release: release/dashing/{package}/{version}
  3988. url: https://github.com/ros-drivers-gbp/velodyne-release.git
  3989. version: 2.0.0-1
  3990. source:
  3991. type: git
  3992. url: https://github.com/ros-drivers/velodyne.git
  3993. version: dashing-devel
  3994. status: maintained
  3995. vision_msgs:
  3996. doc:
  3997. type: git
  3998. url: https://github.com/Kukanani/vision_msgs.git
  3999. version: ros2
  4000. release:
  4001. tags:
  4002. release: release/dashing/{package}/{version}
  4003. url: https://github.com/Kukanani/vision_msgs-release.git
  4004. version: 2.0.0-1
  4005. source:
  4006. type: git
  4007. url: https://github.com/Kukanani/vision_msgs.git
  4008. version: ros2
  4009. status: maintained
  4010. vision_opencv:
  4011. doc:
  4012. type: git
  4013. url: https://github.com/ros-perception/vision_opencv.git
  4014. version: ros2
  4015. release:
  4016. packages:
  4017. - cv_bridge
  4018. - image_geometry
  4019. - vision_opencv
  4020. tags:
  4021. release: release/dashing/{package}/{version}
  4022. url: https://github.com/ros2-gbp/vision_opencv-release.git
  4023. version: 2.1.4-1
  4024. source:
  4025. test_pull_requests: true
  4026. type: git
  4027. url: https://github.com/ros-perception/vision_opencv.git
  4028. version: ros2
  4029. status: maintained
  4030. web_video_server:
  4031. doc:
  4032. type: git
  4033. url: https://github.com/RobotWebTools/web_video_server.git
  4034. version: ros2
  4035. release:
  4036. tags:
  4037. release: release/dashing/{package}/{version}
  4038. url: https://github.com/ros2-gbp/web_video_server-release.git
  4039. version: 1.0.0-1
  4040. source:
  4041. test_pull_requests: true
  4042. type: git
  4043. url: https://github.com/RobotWebTools/web_video_server.git
  4044. version: ros2
  4045. status: maintained
  4046. xacro:
  4047. doc:
  4048. type: git
  4049. url: https://github.com/ros/xacro.git
  4050. version: ros2
  4051. release:
  4052. tags:
  4053. release: release/dashing/{package}/{version}
  4054. url: https://github.com/ros-gbp/xacro-release.git
  4055. version: 2.0.6-1
  4056. source:
  4057. test_pull_requests: true
  4058. type: git
  4059. url: https://github.com/ros/xacro.git
  4060. version: ros2
  4061. status: maintained
  4062. yaml_cpp_vendor:
  4063. release:
  4064. tags:
  4065. release: release/dashing/{package}/{version}
  4066. url: https://github.com/ros2-gbp/yaml_cpp_vendor-release.git
  4067. version: 6.0.1-1
  4068. source:
  4069. type: git
  4070. url: https://github.com/ros2/yaml_cpp_vendor.git
  4071. version: dashing
  4072. status: maintained
  4073. type: distribution
  4074. version: 2