加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
distribution.yaml 183.64 KB
一键复制 编辑 原始数据 按行查看 历史
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719
%YAML 1.1
# ROS distribution file
# see REP 143: http://ros.org/reps/rep-0143.html
---
release_platforms:
rhel:
- '8'
ubuntu:
- focal
repositories:
SMACC2:
doc:
type: git
url: https://github.com/robosoft-ai/SMACC2.git
version: galactic
release:
packages:
- smacc2
- smacc2_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/robosoft-ai/SMACC2-release.git
version: 0.3.0-3
source:
type: git
url: https://github.com/robosoft-ai/SMACC2.git
version: galactic
status: developed
acado_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/acado_vendor-release.git
version: 1.0.0-3
source:
type: git
url: https://gitlab.com/autowarefoundation/autoware.auto/acado_vendor.git
version: main
status: maintained
ackermann_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-drivers-gbp/ackermann_msgs-release.git
version: 2.0.2-1
source:
type: git
url: https://github.com/ros-drivers/ackermann_msgs.git
version: ros2
status: maintained
ament_black:
release:
packages:
- ament_black
- ament_cmake_black
tags:
release: release/galactic/{package}/{version}
url: https://github.com/Timple/ament_black-release.git
version: 0.1.0-1
source:
type: git
url: https://github.com/Timple/ament_black.git
version: main
status: maintained
ament_cmake:
doc:
type: git
url: https://github.com/ament/ament_cmake.git
version: galactic
release:
packages:
- ament_cmake
- ament_cmake_auto
- ament_cmake_core
- ament_cmake_export_definitions
- ament_cmake_export_dependencies
- ament_cmake_export_include_directories
- ament_cmake_export_interfaces
- ament_cmake_export_libraries
- ament_cmake_export_link_flags
- ament_cmake_export_targets
- ament_cmake_gmock
- ament_cmake_google_benchmark
- ament_cmake_gtest
- ament_cmake_include_directories
- ament_cmake_libraries
- ament_cmake_nose
- ament_cmake_pytest
- ament_cmake_python
- ament_cmake_target_dependencies
- ament_cmake_test
- ament_cmake_version
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_cmake-release.git
version: 1.1.6-1
source:
test_pull_requests: true
type: git
url: https://github.com/ament/ament_cmake.git
version: galactic
status: developed
ament_cmake_catch2:
doc:
type: git
url: https://github.com/open-rmf/ament_cmake_catch2.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_cmake_catch2-release.git
version: 1.2.0-1
source:
type: git
url: https://github.com/open-rmf/ament_cmake_catch2.git
version: galactic
status: developed
ament_cmake_ros:
doc:
type: git
url: https://github.com/ros2/ament_cmake_ros.git
version: galactic
release:
packages:
- ament_cmake_ros
- domain_coordinator
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_cmake_ros-release.git
version: 0.9.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/ament_cmake_ros.git
version: galactic
status: maintained
ament_index:
doc:
type: git
url: https://github.com/ament/ament_index.git
version: galactic
release:
packages:
- ament_index_cpp
- ament_index_python
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_index-release.git
version: 1.2.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ament/ament_index.git
version: galactic
status: maintained
ament_lint:
doc:
type: git
url: https://github.com/ament/ament_lint.git
version: galactic
release:
packages:
- ament_clang_format
- ament_clang_tidy
- ament_cmake_clang_format
- ament_cmake_clang_tidy
- ament_cmake_copyright
- ament_cmake_cppcheck
- ament_cmake_cpplint
- ament_cmake_flake8
- ament_cmake_lint_cmake
- ament_cmake_mypy
- ament_cmake_pclint
- ament_cmake_pep257
- ament_cmake_pycodestyle
- ament_cmake_pyflakes
- ament_cmake_uncrustify
- ament_cmake_xmllint
- ament_copyright
- ament_cppcheck
- ament_cpplint
- ament_flake8
- ament_lint
- ament_lint_auto
- ament_lint_cmake
- ament_lint_common
- ament_mypy
- ament_pclint
- ament_pep257
- ament_pycodestyle
- ament_pyflakes
- ament_uncrustify
- ament_xmllint
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_lint-release.git
version: 0.10.7-1
source:
test_pull_requests: true
type: git
url: https://github.com/ament/ament_lint.git
version: galactic
status: developed
ament_nodl:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_nodl-release.git
version: 0.1.0-3
source:
type: git
url: https://github.com/ubuntu-robotics/ament_nodl.git
version: master
status: developed
ament_package:
doc:
type: git
url: https://github.com/ament/ament_package.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ament_package-release.git
version: 0.13.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ament/ament_package.git
version: galactic
status: developed
angles:
doc:
type: git
url: https://github.com/ros/angles.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/angles-release.git
version: 1.14.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/angles.git
version: galactic-devel
status: maintained
apex_containers:
doc:
type: git
url: https://gitlab.com/ApexAI/apex_containers.git
version: rolling
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/apex_containers-release.git
version: 0.0.4-2
source:
type: git
url: https://gitlab.com/ApexAI/apex_containers.git
version: rolling
status: developed
apex_test_tools:
doc:
type: git
url: https://gitlab.com/ApexAI/apex_test_tools.git
version: rolling
release:
packages:
- apex_test_tools
- test_apex_test_tools
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/apex_test_tools-release.git
version: 0.0.2-5
source:
type: git
url: https://gitlab.com/ApexAI/apex_test_tools.git
version: rolling
status: developed
apriltag:
doc:
type: git
url: https://github.com/AprilRobotics/apriltag.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/apriltag-release.git
version: 3.2.0-1
source:
type: git
url: https://github.com/AprilRobotics/apriltag.git
version: master
status: maintained
async_web_server_cpp:
doc:
type: git
url: https://github.com/fkie/async_web_server_cpp.git
version: ros2-releases
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/async_web_server_cpp-release.git
version: 2.0.0-2
source:
type: git
url: https://github.com/fkie/async_web_server_cpp.git
version: ros2-develop
status: maintained
automotive_autonomy_msgs:
doc:
type: git
url: https://github.com/astuff/automotive_autonomy_msgs.git
version: master
release:
packages:
- automotive_autonomy_msgs
- automotive_navigation_msgs
- automotive_platform_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/astuff/automotive_autonomy_msgs-release.git
version: 3.0.4-1
source:
type: git
url: https://github.com/astuff/automotive_autonomy_msgs.git
version: master
status: maintained
autoware_auto_msgs:
doc:
type: git
url: https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/autoware_auto_msgs-release.git
version: 1.0.0-2
source:
type: git
url: https://gitlab.com/autowarefoundation/autoware.auto/autoware_auto_msgs.git
version: master
status: developed
aws-robomaker-small-warehouse-world:
doc:
type: git
url: https://github.com/aws-robotics/aws-robomaker-small-warehouse-world.git
version: ros2
release:
packages:
- aws_robomaker_small_warehouse_world
tags:
release: release/galactic/{package}/{version}
url: https://github.com/aws-gbp/aws_robomaker_small_warehouse_world-release.git
version: 1.0.5-1
source:
type: git
url: https://github.com/aws-robotics/aws-robomaker-small-warehouse-world.git
version: ros2
status: maintained
azure-iot-sdk-c:
doc:
type: git
url: https://github.com/Azure/azure-iot-sdk-c.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/azure-iot-sdk-c-release.git
version: 1.9.0-2
source:
type: git
url: https://github.com/Azure/azure-iot-sdk-c.git
version: main
status: maintained
backward_ros:
doc:
type: git
url: https://github.com/pal-robotics/backward_ros.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/pal-gbp/backward_ros-release.git
version: 1.0.1-2
source:
type: git
url: https://github.com/pal-robotics/backward_ros.git
version: foxy-devel
status: maintained
behaviortree_cpp:
doc:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
release:
packages:
- behaviortree_cpp_v3
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/behaviortree_cpp-release.git
version: 3.8.0-1
source:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
status: developed
bno055:
doc:
type: git
url: https://github.com/flynneva/bno055.git
version: develop
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/bno055-release.git
version: 0.2.0-1
source:
type: git
url: https://github.com/flynneva/bno055.git
version: develop
status: developed
bond_core:
doc:
type: git
url: https://github.com/ros/bond_core.git
version: galactic
release:
packages:
- bond
- bond_core
- bondcpp
- smclib
- test_bond
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/bond_core-release.git
version: 3.0.1-4
source:
test_pull_requests: true
type: git
url: https://github.com/ros/bond_core.git
version: galactic
status: maintained
boost_geometry_util:
doc:
type: git
url: https://github.com/OUXT-Polaris/boost_geometry_util.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/boost_geometry_util-release.git
version: 0.0.1-1
source:
type: git
url: https://github.com/OUXT-Polaris/boost_geometry_util.git
version: master
status: developed
cartographer:
doc:
type: git
url: https://github.com/ros2/cartographer.git
version: foxy
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/cartographer-release.git
version: 1.0.9001-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/cartographer.git
version: foxy
status: maintained
cartographer_ros:
doc:
type: git
url: https://github.com/ros2/cartographer_ros.git
version: dashing
release:
packages:
- cartographer_ros
- cartographer_ros_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/cartographer_ros-release.git
version: 1.0.9003-4
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/cartographer_ros.git
version: dashing
status: maintained
cascade_lifecycle:
doc:
type: git
url: https://github.com/fmrico/cascade_lifecycle.git
version: galactic-devel
release:
packages:
- cascade_lifecycle_msgs
- rclcpp_cascade_lifecycle
tags:
release: release/galactic/{package}/{version}
url: https://github.com/fmrico/cascade_lifecycle-release.git
version: 1.0.0-2
source:
type: git
url: https://github.com/fmrico/cascade_lifecycle.git
version: galactic-devel
status: developed
class_loader:
doc:
type: git
url: https://github.com/ros/class_loader.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/class_loader-release.git
version: 2.1.2-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros/class_loader.git
version: galactic
status: maintained
color_names:
doc:
type: git
url: https://github.com/OUXT-Polaris/color_names.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/color_names-release.git
version: 0.0.3-1
source:
type: git
url: https://github.com/OUXT-Polaris/color_names-release.git
version: master
status: developed
common_interfaces:
doc:
type: git
url: https://github.com/ros2/common_interfaces.git
version: galactic
release:
packages:
- actionlib_msgs
- common_interfaces
- diagnostic_msgs
- geometry_msgs
- nav_msgs
- sensor_msgs
- sensor_msgs_py
- shape_msgs
- std_msgs
- std_srvs
- stereo_msgs
- trajectory_msgs
- visualization_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/common_interfaces-release.git
version: 2.2.4-1
source:
test_abi: true
test_pull_requests: true
type: git
url: https://github.com/ros2/common_interfaces.git
version: galactic
status: maintained
console_bridge_vendor:
doc:
type: git
url: https://github.com/ros2/console_bridge_vendor.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/console_bridge_vendor-release.git
version: 1.3.2-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/console_bridge_vendor.git
version: galactic
status: maintained
control_box_rst:
doc:
type: git
url: https://github.com/rst-tu-dortmund/control_box_rst.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/control_box_rst-release.git
version: 0.0.7-3
source:
test_pull_requests: true
type: git
url: https://github.com/rst-tu-dortmund/control_box_rst.git
version: foxy-devel
status: developed
control_msgs:
doc:
type: git
url: https://github.com/ros-controls/control_msgs.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/control_msgs-release.git
version: 3.0.0-2
source:
type: git
url: https://github.com/ros-controls/control_msgs.git
version: galactic-devel
status: maintained
control_toolbox:
doc:
type: git
url: https://github.com/ros-controls/control_toolbox.git
version: ros2-master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/control_toolbox-release.git
version: 2.1.2-1
source:
type: git
url: https://github.com/ros-controls/control_toolbox.git
version: ros2-master
status: maintained
create3_sim:
release:
packages:
- irobot_create_common_bringup
- irobot_create_control
- irobot_create_description
- irobot_create_gazebo_bringup
- irobot_create_gazebo_plugins
- irobot_create_gazebo_sim
- irobot_create_ignition_bringup
- irobot_create_ignition_plugins
- irobot_create_ignition_sim
- irobot_create_ignition_toolbox
- irobot_create_nodes
- irobot_create_toolbox
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/create3_sim-release.git
version: 1.0.3-1
source:
type: git
url: https://github.com/iRobotEducation/create3_sim.git
version: main
status: developed
cudnn_cmake_module:
doc:
type: git
url: https://github.com/tier4/cudnn_cmake_module.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/cudnn_cmake_module-release.git
version: 0.0.1-1
source:
type: git
url: https://github.com/tier4/cudnn_cmake_module.git
version: main
status: maintained
cyclonedds:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/cyclonedds-release.git
version: 0.8.0-6
source:
type: git
url: https://github.com/eclipse-cyclonedds/cyclonedds.git
version: releases/0.8.x
status: maintained
demos:
doc:
type: git
url: https://github.com/ros2/demos.git
version: galactic
release:
packages:
- action_tutorials_cpp
- action_tutorials_interfaces
- action_tutorials_py
- composition
- demo_nodes_cpp
- demo_nodes_cpp_native
- demo_nodes_py
- dummy_map_server
- dummy_robot_bringup
- dummy_sensors
- image_tools
- intra_process_demo
- lifecycle
- logging_demo
- pendulum_control
- pendulum_msgs
- quality_of_service_demo_cpp
- quality_of_service_demo_py
- topic_monitor
- topic_statistics_demo
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/demos-release.git
version: 0.14.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/demos.git
version: galactic
status: developed
depthai:
doc:
type: git
url: https://github.com/luxonis/depthai-core.git
version: ros-release
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/luxonis/depthai-core-release.git
version: 2.19.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/luxonis/depthai-core.git
version: ros-release
status: developed
depthai-ros:
doc:
type: git
url: https://github.com/luxonis/depthai-ros.git
version: ros-release
release:
packages:
- depthai-ros
- depthai_bridge
- depthai_examples
- depthai_ros_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/luxonis/depthai-ros-release.git
version: 2.5.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/luxonis/depthai-ros.git
version: ros-release
status: developed
depthimage_to_laserscan:
doc:
type: git
url: https://github.com/ros-perception/depthimage_to_laserscan.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/depthimage_to_laserscan-release.git
version: 2.3.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/depthimage_to_laserscan.git
version: foxy-devel
status: maintained
diagnostics:
doc:
type: git
url: https://github.com/ros/diagnostics.git
version: galactic
release:
packages:
- diagnostic_aggregator
- diagnostic_updater
- self_test
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/diagnostics-release.git
version: 2.1.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/diagnostics.git
version: galactic
status: maintained
dolly:
doc:
type: git
url: https://github.com/chapulina/dolly.git
version: galactic
release:
packages:
- dolly
- dolly_follow
- dolly_gazebo
- dolly_ignition
tags:
release: release/galactic/{package}/{version}
url: https://github.com/chapulina/dolly-release.git
version: 0.4.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/chapulina/dolly.git
version: galactic
status: developed
domain_bridge:
doc:
type: git
url: https://github.com/ros2/domain_bridge.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/domain_bridge-release.git
version: 0.4.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/domain_bridge.git
version: galactic
status: developed
dynamixel_sdk:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/DynamixelSDK.git
version: galactic-devel
release:
packages:
- dynamixel_sdk
- dynamixel_sdk_custom_interfaces
- dynamixel_sdk_examples
tags:
release: release/galactic/{package}/{version}
url: https://github.com/robotis-ros2-release/dynamixel_sdk-release.git
version: 3.7.40-1
source:
type: git
url: https://github.com/ROBOTIS-GIT/DynamixelSDK.git
version: galactic-devel
status: developed
dynamixel_workbench:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/dynamixel-workbench.git
version: galactic-devel
release:
packages:
- dynamixel_workbench
- dynamixel_workbench_toolbox
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/dynamixel_workbench-release.git
version: 2.2.3-1
source:
type: git
url: https://github.com/ROBOTIS-GIT/dynamixel-workbench.git
version: galactic-devel
status: maintained
dynamixel_workbench_msgs:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/dynamixel-workbench-msgs.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/dynamixel_workbench_msgs-release.git
version: 2.0.3-1
source:
type: git
url: https://github.com/ROBOTIS-GIT/dynamixel-workbench-msgs.git
version: galactic-devel
status: maintained
ecl_core:
doc:
type: git
url: https://github.com/stonier/ecl_core.git
version: release/1.2.x
release:
packages:
- ecl_command_line
- ecl_concepts
- ecl_containers
- ecl_converters
- ecl_core
- ecl_core_apps
- ecl_devices
- ecl_eigen
- ecl_exceptions
- ecl_filesystem
- ecl_formatters
- ecl_geometry
- ecl_ipc
- ecl_linear_algebra
- ecl_manipulators
- ecl_math
- ecl_mobile_robot
- ecl_mpl
- ecl_sigslots
- ecl_statistics
- ecl_streams
- ecl_threads
- ecl_time
- ecl_type_traits
- ecl_utilities
tags:
release: release/galactic/{package}/{version}
url: https://github.com/yujinrobot-release/ecl_core-release.git
version: 1.2.0-1
source:
type: git
url: https://github.com/stonier/ecl_core.git
version: devel
status: maintained
ecl_lite:
doc:
type: git
url: https://github.com/stonier/ecl_lite.git
version: release/1.1.x
release:
packages:
- ecl_config
- ecl_console
- ecl_converters_lite
- ecl_errors
- ecl_io
- ecl_lite
- ecl_sigslots_lite
- ecl_time_lite
tags:
release: release/galactic/{package}/{version}
url: https://github.com/yujinrobot-release/ecl_lite-release.git
version: 1.1.0-1
source:
type: git
url: https://github.com/stonier/ecl_lite.git
version: devel
status: maintained
ecl_tools:
doc:
type: git
url: https://github.com/stonier/ecl_tools.git
version: release/1.0.x
release:
packages:
- ecl_build
- ecl_license
- ecl_tools
tags:
release: release/galactic/{package}/{version}
url: https://github.com/yujinrobot-release/ecl_tools-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/stonier/ecl_tools.git
version: devel
status: maintained
eigen3_cmake_module:
doc:
type: git
url: https://github.com/ros2/eigen3_cmake_module.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/eigen3_cmake_module-release.git
version: 0.1.1-3
source:
type: git
url: https://github.com/ros2/eigen3_cmake_module.git
version: galactic
status: maintained
eigen_stl_containers:
doc:
type: git
url: https://github.com/ros/eigen_stl_containers.git
version: dashing
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/eigen_stl_containers-release.git
version: 1.0.0-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros/eigen_stl_containers.git
version: dashing
status: maintained
eigenpy:
doc:
type: git
url: https://github.com/stack-of-tasks/eigenpy.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/eigenpy-release.git
version: 2.7.14-1
source:
type: git
url: https://github.com/stack-of-tasks/eigenpy.git
version: devel
status: maintained
embree_vendor:
doc:
type: git
url: https://github.com/OUXT-Polaris/embree_vendor.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/embree_vendor-release.git
source:
type: git
url: https://github.com/OUXT-Polaris/embree_vendor.git
version: master
status: developed
example_interfaces:
doc:
type: git
url: https://github.com/ros2/example_interfaces.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/example_interfaces-release.git
version: 0.9.2-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/example_interfaces.git
version: galactic
status: maintained
examples:
doc:
type: git
url: https://github.com/ros2/examples.git
version: galactic
release:
packages:
- examples_rclcpp_cbg_executor
- examples_rclcpp_minimal_action_client
- examples_rclcpp_minimal_action_server
- examples_rclcpp_minimal_client
- examples_rclcpp_minimal_composition
- examples_rclcpp_minimal_publisher
- examples_rclcpp_minimal_service
- examples_rclcpp_minimal_subscriber
- examples_rclcpp_minimal_timer
- examples_rclcpp_multithreaded_executor
- examples_rclpy_executors
- examples_rclpy_guard_conditions
- examples_rclpy_minimal_action_client
- examples_rclpy_minimal_action_server
- examples_rclpy_minimal_client
- examples_rclpy_minimal_publisher
- examples_rclpy_minimal_service
- examples_rclpy_minimal_subscriber
- examples_rclpy_pointcloud_publisher
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/examples-release.git
version: 0.11.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/examples.git
version: galactic
status: maintained
fastcdr:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/fastcdr-release.git
version: 1.0.20-3
source:
test_commits: false
test_pull_requests: false
type: git
url: https://github.com/eProsima/Fast-CDR.git
version: v1.0.20
status: maintained
fastrtps:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/fastrtps-release.git
version: 2.3.6-1
source:
test_commits: true
test_pull_requests: false
type: git
url: https://github.com/eProsima/Fast-DDS.git
version: 2.3.x
status: maintained
filters:
doc:
type: git
url: https://github.com/ros/filters.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/filters-release.git
version: 2.1.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/filters.git
version: ros2
status: maintained
fluent_rviz:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/fluent_rviz-release.git
version: 0.0.3-1
source:
type: git
url: https://github.com/ForteFibre/FluentRviz.git
version: ros2
status: developed
fmi_adapter:
doc:
type: git
url: https://github.com/boschresearch/fmi_adapter.git
version: master
release:
packages:
- fmi_adapter
- fmi_adapter_examples
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/fmi_adapter-release.git
version: 2.1.1-1
source:
type: git
url: https://github.com/boschresearch/fmi_adapter.git
version: master
status: maintained
fmilibrary_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/fmilibrary_vendor-release.git
version: 1.0.1-2
source:
type: git
url: https://github.com/boschresearch/fmilibrary_vendor.git
version: master
status: maintained
foonathan_memory_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/foonathan_memory_vendor-release.git
version: 1.2.0-1
source:
type: git
url: https://github.com/eProsima/foonathan_memory_vendor.git
version: master
status: maintained
foros:
doc:
type: git
url: https://github.com/42dot/foros.git
version: galactic
release:
packages:
- foros
- foros_examples
- foros_inspector
- foros_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/foros-release.git
version: 0.4.1-2
source:
type: git
url: https://github.com/42dot/foros.git
version: galactic
status: maintained
four_wheel_steering_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-drivers-gbp/four_wheel_steering_msgs-release.git
version: 2.0.1-1
source:
type: git
url: https://github.com/ros-drivers/four_wheel_steering_msgs.git
version: ros2
status: maintained
foxglove_bridge:
doc:
type: git
url: https://github.com/foxglove/ros-foxglove-bridge.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/foxglove_bridge-release.git
version: 0.2.1-1
source:
type: git
url: https://github.com/foxglove/ros-foxglove-bridge.git
version: main
status: developed
foxglove_msgs:
doc:
type: git
url: https://github.com/foxglove/schemas.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_foxglove_msgs-release.git
version: 2.1.1-1
source:
type: git
url: https://github.com/foxglove/schemas.git
version: main
status: maintained
gazebo_ros2_control:
doc:
type: git
url: https://github.com/ros-simulation/gazebo_ros2_control.git
version: galactic
release:
packages:
- gazebo_ros2_control
- gazebo_ros2_control_demos
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/gazebo_ros2_control-release.git
version: 0.2.0-1
source:
type: git
url: https://github.com/ros-simulation/gazebo_ros2_control.git
version: galactic
status: maintained
gazebo_ros_pkgs:
doc:
type: git
url: https://github.com/ros-simulation/gazebo_ros_pkgs.git
version: galactic
release:
packages:
- gazebo_dev
- gazebo_msgs
- gazebo_plugins
- gazebo_ros
- gazebo_ros_pkgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/gazebo_ros_pkgs-release.git
version: 3.5.2-5
source:
test_pull_requests: true
type: git
url: https://github.com/ros-simulation/gazebo_ros_pkgs.git
version: galactic
status: maintained
gc_spl:
doc:
type: git
url: https://github.com/ros-sports/gc_spl.git
version: galactic
release:
packages:
- gc_spl_2022
- rcgcd_spl_14
- rcgcd_spl_14_conversion
- rcgcrd_spl_4
- rcgcrd_spl_4_conversion
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/gc_spl-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/ros-sports/gc_spl.git
version: galactic
status: developed
geographic_info:
doc:
type: git
url: https://github.com/ros-geographic-info/geographic_info.git
version: ros2
release:
packages:
- geodesy
- geographic_info
- geographic_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/geographic_info-release.git
version: 1.0.4-5
source:
test_pull_requests: true
type: git
url: https://github.com/ros-geographic-info/geographic_info.git
version: ros2
status: maintained
geometric_shapes:
doc:
type: git
url: https://github.com/ros-planning/geometric_shapes.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/geometric_shapes-release.git
version: 2.1.2-1
source:
type: git
url: https://github.com/ros-planning/geometric_shapes.git
version: ros2
status: maintained
geometry2:
doc:
type: git
url: https://github.com/ros2/geometry2.git
version: galactic
release:
packages:
- examples_tf2_py
- geometry2
- tf2
- tf2_bullet
- tf2_eigen
- tf2_eigen_kdl
- tf2_geometry_msgs
- tf2_kdl
- tf2_msgs
- tf2_py
- tf2_ros
- tf2_ros_py
- tf2_sensor_msgs
- tf2_tools
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/geometry2-release.git
version: 0.17.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/geometry2.git
version: galactic
status: maintained
geometry_tutorials:
doc:
type: git
url: https://github.com/ros/geometry_tutorials.git
version: ros2
release:
packages:
- geometry_tutorials
- turtle_tf2_cpp
- turtle_tf2_py
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/geometry_tutorials-release.git
version: 0.3.6-1
source:
type: git
url: https://github.com/ros/geometry_tutorials.git
version: ros2
status: maintained
google_benchmark_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/google_benchmark_vendor-release.git
version: 0.0.6-2
source:
test_pull_requests: true
type: git
url: https://github.com/ament/google_benchmark_vendor.git
version: galactic
status: maintained
googletest:
release:
packages:
- gmock_vendor
- gtest_vendor
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/googletest-release.git
version: 1.10.9003-2
source:
type: git
url: https://github.com/ament/googletest.git
version: galactic
status: maintained
gps_umd:
doc:
type: git
url: https://github.com/swri-robotics/gps_umd.git
version: dashing-devel
release:
packages:
- gps_msgs
- gps_tools
- gps_umd
- gpsd_client
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/gps_umd-release.git
version: 1.0.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/swri-robotics/gps_umd.git
version: dashing-devel
status: developed
graph_msgs:
doc:
type: git
url: https://github.com/PickNikRobotics/graph_msgs.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/PickNikRobotics/graph_msgs-release.git
version: 0.2.0-1
source:
type: git
url: https://github.com/PickNikRobotics/graph_msgs.git
version: ros2
status: maintained
grbl_msgs:
doc:
type: git
url: https://github.com/flynneva/grbl_msgs.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/grbl_msgs-release.git
version: 0.0.2-5
source:
type: git
url: https://github.com/flynneva/grbl_msgs.git
version: main
status: maintained
grbl_ros:
doc:
type: git
url: https://github.com/flynneva/grbl_ros.git
version: devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/grbl_ros-release.git
version: 0.0.16-1
source:
type: git
url: https://github.com/flynneva/grbl_ros.git
version: devel
status: maintained
gscam:
doc:
type: git
url: https://github.com/ros-drivers/gscam.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/gscam-release.git
version: 2.0.2-1
source:
type: git
url: https://github.com/ros-drivers/gscam.git
version: ros2
status: developed
hash_library_vendor:
doc:
type: git
url: https://github.com/tier4/hash_library_vendor.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/hash_library_vendor-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/tier4/hash_library_vendor.git
version: main
status: maintained
hls_lfcd_lds_driver:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/robotis-ros2-release/hls_lfcd_lds_driver-release.git
version: 2.0.4-1
source:
type: git
url: https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver.git
version: galactic-devel
status: maintained
hpp-fcl:
doc:
type: git
url: https://github.com/humanoid-path-planner/hpp-fcl.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/hpp_fcl-release.git
version: 2.1.3-1
source:
type: git
url: https://github.com/humanoid-path-planner/hpp-fcl.git
version: devel
status: developed
iceoryx:
release:
packages:
- iceoryx_binding_c
- iceoryx_posh
- iceoryx_utils
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/iceoryx-release.git
version: 1.0.0-2
source:
type: git
url: https://github.com/eclipse-iceoryx/iceoryx.git
version: release_1.0
status: developed
ifm3d_core:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ifm3d-release.git
version: 0.18.0-6
status: developed
ign_ros2_control:
doc:
type: git
url: https://github.com/ignitionrobotics/ign_ros2_control.git
version: galactic
release:
packages:
- ign_ros2_control
- ign_ros2_control_demos
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ign_ros2_control-release.git
version: 0.4.2-1
source:
type: git
url: https://github.com/ignitionrobotics/ign_ros2_control.git
version: galactic
status: maintained
ign_rviz:
doc:
type: git
url: https://github.com/ignitionrobotics/ign-rviz.git
version: main
release:
packages:
- ign_rviz
- ign_rviz_common
- ign_rviz_plugins
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ign_rviz-release.git
version: 0.0.1-5
source:
test_pull_requests: true
type: git
url: https://github.com/ignitionrobotics/ign-rviz.git
version: main
status: developed
image_common:
doc:
type: git
url: https://github.com/ros-perception/image_common.git
version: galactic
release:
packages:
- camera_calibration_parsers
- camera_info_manager
- image_common
- image_transport
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/image_common-release.git
version: 2.5.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/image_common.git
version: galactic
status: maintained
image_pipeline:
doc:
type: git
url: https://github.com/ros-perception/image_pipeline.git
version: galactic
release:
packages:
- camera_calibration
- depth_image_proc
- image_pipeline
- image_proc
- image_publisher
- image_rotate
- image_view
- stereo_image_proc
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/image_pipeline-release.git
version: 2.2.1-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/image_pipeline.git
version: galactic
status: maintained
image_transport_plugins:
doc:
type: git
url: https://github.com/ros-perception/image_transport_plugins.git
version: foxy-devel
release:
packages:
- compressed_depth_image_transport
- compressed_image_transport
- image_transport_plugins
- theora_image_transport
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/image_transport_plugins-release.git
version: 2.3.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/image_transport_plugins.git
version: foxy-devel
status: maintained
imu_tools:
doc:
type: git
url: https://github.com/CCNYRoboticsLab/imu_tools.git
version: galactic
release:
packages:
- imu_complementary_filter
- imu_filter_madgwick
- imu_tools
- rviz_imu_plugin
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/imu_tools-release.git
version: 2.0.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/CCNYRoboticsLab/imu_tools.git
version: galactic
status: maintained
interactive_marker_twist_server:
doc:
type: git
url: https://github.com/ros-visualization/interactive_marker_twist_server.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/interactive_marker_twist_server-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/ros-visualization/interactive_marker_twist_server.git
version: foxy-devel
status: maintained
interactive_markers:
doc:
type: git
url: https://github.com/ros-visualization/interactive_markers.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/interactive_markers-release.git
version: 2.2.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/interactive_markers.git
version: galactic
status: maintained
irobot_create_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/irobot_create_msgs-release.git
version: 1.2.4-1
source:
type: git
url: https://github.com/iRobotEducation/irobot_create_msgs.git
version: main
status: developed
jlb_pid:
doc:
type: git
url: https://gitlab.com/Juulbl/ros2-pid
version: galactic
status: maintained
joint_state_publisher:
doc:
type: git
url: https://github.com/ros/joint_state_publisher.git
version: galactic
release:
packages:
- joint_state_publisher
- joint_state_publisher_gui
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/joint_state_publisher-release.git
version: 2.2.0-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros/joint_state_publisher.git
version: galactic
status: maintained
joystick_drivers:
doc:
type: git
url: https://github.com/ros-drivers/joystick_drivers.git
version: foxy-devel
release:
packages:
- joy
- joy_linux
- sdl2_vendor
- spacenav
- wiimote
- wiimote_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/joystick_drivers-release.git
version: 3.0.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-drivers/joystick_drivers.git
version: foxy-devel
status: maintained
kdl_parser:
doc:
type: git
url: https://github.com/ros/kdl_parser.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/kdl_parser-release.git
version: 2.5.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros/kdl_parser.git
version: galactic
status: maintained
kobuki_core:
doc:
type: git
url: https://github.com/kobuki-base/kobuki_core.git
version: release/1.4.x
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/kobuki_core-release.git
version: 1.4.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/kobuki-base/kobuki_core.git
version: release/1.4.x
status: maintained
kobuki_ros_interfaces:
doc:
type: git
url: https://github.com/kobuki-base/kobuki_ros_interfaces.git
version: release/1.0.x
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/kobuki_ros_interfaces-release.git
version: 1.0.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/kobuki-base/kobuki_ros_interfaces.git
version: release/1.0.x
status: maintained
kobuki_velocity_smoother:
doc:
type: git
url: https://github.com/kobuki-base/kobuki_velocity_smoother.git
version: release/0.15.x
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/kobuki_velocity_smoother-release.git
version: 0.15.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/kobuki-base/kobuki_velocity_smoother.git
version: release/0.15.x
status: maintained
lanelet2:
doc:
type: git
url: https://github.com/fzi-forschungszentrum-informatik/lanelet2.git
version: master
release:
packages:
- lanelet2
- lanelet2_core
- lanelet2_examples
- lanelet2_io
- lanelet2_maps
- lanelet2_projection
- lanelet2_python
- lanelet2_routing
- lanelet2_traffic_rules
- lanelet2_validation
tags:
release: release/galactic/{package}/{version}
url: https://github.com/fzi-forschungszentrum-informatik/lanelet2-release.git
version: 1.1.1-2
source:
type: git
url: https://github.com/fzi-forschungszentrum-informatik/lanelet2.git
version: master
status: maintained
laser_filters:
doc:
type: git
url: https://github.com/ros-perception/laser_filters.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/laser_filters-release.git
version: 2.0.3-1
source:
type: git
url: https://github.com/ros-perception/laser_filters.git
version: ros2
status: maintained
laser_geometry:
doc:
type: git
url: https://github.com/ros-perception/laser_geometry.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/laser_geometry-release.git
version: 2.2.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/laser_geometry.git
version: galactic
status: maintained
laser_proc:
doc:
type: git
url: https://github.com/ros-perception/laser_proc.git
version: ros2-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/laser_proc-release.git
version: 1.0.2-4
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/laser_proc.git
version: ros2-devel
status: maintained
launch:
doc:
type: git
url: https://github.com/ros2/launch.git
version: galactic
release:
packages:
- launch
- launch_testing
- launch_testing_ament_cmake
- launch_xml
- launch_yaml
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/launch-release.git
version: 0.17.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/launch.git
version: galactic
status: developed
launch_param_builder:
doc:
type: git
url: https://github.com/PickNikRobotics/launch_param_builder.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/PickNikRobotics/launch_param_builder-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/PickNikRobotics/launch_param_builder.git
version: main
status: maintained
launch_ros:
doc:
type: git
url: https://github.com/ros2/launch_ros.git
version: galactic
release:
packages:
- launch_ros
- launch_testing_ros
- ros2launch
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/launch_ros-release.git
version: 0.14.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/launch_ros.git
version: galactic
status: maintained
lgsvl_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/lgsvl_msgs-release.git
version: 0.0.4-2
source:
type: git
url: https://github.com/lgsvl/lgsvl_msgs.git
version: foxy-devel
libg2o:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/libg2o-release.git
version: 2020.5.29-3
status: maintained
libnabo:
doc:
type: git
url: https://github.com/ethz-asl/libnabo.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/libnabo-release.git
version: 1.0.7-1
source:
type: git
url: https://github.com/ethz-asl/libnabo.git
version: master
status: maintained
libpointmatcher:
doc:
type: git
url: https://github.com/ethz-asl/libpointmatcher.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/libpointmatcher-release.git
version: 1.3.1-1
source:
type: git
url: https://github.com/ethz-asl/libpointmatcher.git
version: master
status: maintained
librealsense2:
doc:
type: git
url: https://github.com/IntelRealSense/librealsense.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/IntelRealSense/librealsense2-release.git
version: 2.51.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/IntelRealSense/librealsense.git
version: master
status: developed
libstatistics_collector:
doc:
type: git
url: https://github.com/ros-tooling/libstatistics_collector.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/libstatistics_collector-release.git
version: 1.1.1-1
source:
type: git
url: https://github.com/ros-tooling/libstatistics_collector.git
version: galactic
status: developed
libyaml_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/libyaml_vendor-release.git
version: 1.2.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/libyaml_vendor.git
version: galactic
status: maintained
log_view:
doc:
type: git
url: https://github.com/hatchbed/log_view.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/hatchbed/log_view-release.git
version: 0.2.2-1
source:
type: git
url: https://github.com/hatchbed/log_view.git
version: ros2
status: developed
lua_vendor:
doc:
type: git
url: https://github.com/OUXT-Polaris/lua_vendor.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/lua_vendor-release.git
version: 0.0.2-1
source:
type: git
url: https://github.com/OUXT-Polaris/lua_vendor.git
version: main
status: developed
magic_enum:
doc:
type: git
url: https://github.com/Neargye/magic_enum.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/magic_enum-release.git
version: 0.8.1-1
source:
type: git
url: https://github.com/Neargye/magic_enum.git
version: master
status: maintained
mapviz:
doc:
type: git
url: https://github.com/swri-robotics/mapviz.git
version: ros2-devel
release:
packages:
- mapviz
- mapviz_interfaces
- mapviz_plugins
- multires_image
- tile_map
tags:
release: release/galactic/{package}/{version}
url: https://github.com/swri-robotics-gbp/mapviz-release.git
version: 2.2.0-3
status: developed
marti_common:
doc:
type: git
url: https://github.com/swri-robotics/marti_common.git
version: dashing-devel
release:
packages:
- swri_console_util
- swri_dbw_interface
- swri_geometry_util
- swri_image_util
- swri_math_util
- swri_opencv_util
- swri_prefix_tools
- swri_roscpp
- swri_route_util
- swri_serial_util
- swri_system_util
- swri_transform_util
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/marti_common-release.git
version: 3.5.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/swri-robotics/marti_common.git
version: dashing-devel
status: developed
marti_messages:
doc:
type: git
url: https://github.com/swri-robotics/marti_messages.git
version: dashing-devel
release:
packages:
- marti_can_msgs
- marti_common_msgs
- marti_dbw_msgs
- marti_introspection_msgs
- marti_nav_msgs
- marti_perception_msgs
- marti_sensor_msgs
- marti_status_msgs
- marti_visualization_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/marti_messages-release.git
version: 1.3.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/swri-robotics/marti_messages.git
version: dashing-devel
status: developed
mavlink:
doc:
type: git
url: https://github.com/mavlink/mavlink-gbp-release.git
version: release/galactic/mavlink
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/mavlink/mavlink-gbp-release.git
version: 2022.8.8-1
source:
type: git
url: https://github.com/mavlink/mavlink-gbp-release.git
version: release/galactic/mavlink
status: developed
mavros:
doc:
type: git
url: https://github.com/mavlink/mavros.git
version: ros2
release:
packages:
- libmavconn
- mavros
- mavros_extras
- mavros_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/mavlink/mavros-release.git
version: 2.3.0-1
source:
type: git
url: https://github.com/mavlink/mavros.git
version: ros2
status: developed
menge_vendor:
doc:
type: git
url: https://github.com/open-rmf/menge_vendor.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/menge_vendor-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/open-rmf/menge_vendor.git
version: galactic
status: developed
message_filters:
doc:
type: git
url: https://github.com/ros2/message_filters.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_message_filters-release.git
version: 3.2.6-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/message_filters.git
version: galactic
status: maintained
micro_ros_diagnostics:
doc:
type: git
url: https://github.com/micro-ROS/micro_ros_diagnostics.git
version: master
release:
packages:
- micro_ros_diagnostic_bridge
- micro_ros_diagnostic_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/micro_ros_diagnostics-release.git
version: 0.3.0-1
source:
type: git
url: https://github.com/micro-ROS/micro_ros_diagnostics.git
version: master
status: developed
micro_ros_msgs:
doc:
type: git
url: https://github.com/micro-ROS/micro_ros_msgs.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/micro_ros_msgs-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/micro-ROS/micro_ros_msgs.git
version: galactic
status: maintained
microstrain_inertial:
doc:
type: git
url: https://github.com/LORD-MicroStrain/microstrain_inertial.git
version: ros2
release:
packages:
- microstrain_inertial_driver
- microstrain_inertial_examples
- microstrain_inertial_msgs
- microstrain_inertial_rqt
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/microstrain_inertial-release.git
version: 2.7.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/LORD-MicroStrain/microstrain_inertial.git
version: ros2
status: developed
mimick_vendor:
doc:
type: git
url: https://github.com/ros2/mimick_vendor.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/mimick_vendor-release.git
version: 0.2.6-2
source:
type: git
url: https://github.com/ros2/mimick_vendor.git
version: galactic
status: maintained
mir_robot:
doc:
type: git
url: https://github.com/dfki-ric/mir_robot.git
version: galactic
source:
test_pull_requests: true
type: git
url: https://github.com/dfki-ric/mir_robot.git
version: galactic
status: developed
moveit:
doc:
type: git
url: https://github.com/ros-planning/moveit2.git
version: main
release:
packages:
- chomp_motion_planner
- moveit
- moveit_chomp_optimizer_adapter
- moveit_common
- moveit_configs_utils
- moveit_core
- moveit_hybrid_planning
- moveit_kinematics
- moveit_planners
- moveit_planners_chomp
- moveit_planners_ompl
- moveit_plugins
- moveit_resources_prbt_ikfast_manipulator_plugin
- moveit_resources_prbt_moveit_config
- moveit_resources_prbt_pg70_support
- moveit_resources_prbt_support
- moveit_ros
- moveit_ros_benchmarks
- moveit_ros_control_interface
- moveit_ros_move_group
- moveit_ros_occupancy_map_monitor
- moveit_ros_perception
- moveit_ros_planning
- moveit_ros_planning_interface
- moveit_ros_robot_interaction
- moveit_ros_visualization
- moveit_ros_warehouse
- moveit_runtime
- moveit_servo
- moveit_setup_assistant
- moveit_simple_controller_manager
- pilz_industrial_motion_planner
- pilz_industrial_motion_planner_testutils
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/moveit2-release.git
version: 2.3.4-1
source:
test_commits: false
test_pull_requests: false
type: git
url: https://github.com/ros-planning/moveit2.git
version: main
status: developed
moveit_msgs:
doc:
type: git
url: https://github.com/ros-planning/moveit_msgs.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/moveit_msgs-release.git
version: 2.2.0-1
source:
type: git
url: https://github.com/ros-planning/moveit_msgs.git
version: ros2
status: developed
moveit_resources:
doc:
type: git
url: https://github.com/ros-planning/moveit_resources.git
version: ros2
release:
packages:
- moveit_resources
- moveit_resources_fanuc_description
- moveit_resources_fanuc_moveit_config
- moveit_resources_panda_description
- moveit_resources_panda_moveit_config
- moveit_resources_pr2_description
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/moveit_resources-release.git
version: 2.0.3-1
source:
type: git
url: https://github.com/ros-planning/moveit_resources.git
version: ros2
status: developed
moveit_visual_tools:
doc:
type: git
url: https://github.com/ros-planning/moveit_visual_tools.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/moveit_visual_tools-release.git
version: 4.0.0-1
source:
type: git
url: https://github.com/ros-planning/moveit_visual_tools.git
version: ros2
status: maintained
mrpt2:
doc:
type: git
url: https://github.com/MRPT/mrpt.git
version: develop
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/mrpt2-release.git
version: 2.5.6-1
source:
type: git
url: https://github.com/MRPT/mrpt.git
version: develop
status: developed
mrpt_msgs:
doc:
type: git
url: https://github.com/mrpt-ros-pkg/mrpt_msgs.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/mrpt_msgs-release.git
version: 0.4.4-1
source:
type: git
url: https://github.com/mrpt-ros-pkg/mrpt_msgs.git
version: master
status: maintained
mrt_cmake_modules:
doc:
type: git
url: https://github.com/KIT-MRT/mrt_cmake_modules.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/KIT-MRT/mrt_cmake_modules-release.git
version: 1.0.9-1
source:
type: git
url: https://github.com/KIT-MRT/mrt_cmake_modules.git
version: master
status: maintained
nao_button_sim:
doc:
type: git
url: https://github.com/ijnek/nao_button_sim.git
version: rolling
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/nao_button_sim-release.git
version: 0.1.1-6
source:
type: git
url: https://github.com/ijnek/nao_button_sim.git
version: rolling
status: developed
nao_interfaces:
doc:
type: git
url: https://github.com/ijnek/nao_interfaces.git
version: rolling
release:
packages:
- nao_command_msgs
- nao_sensor_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ijnek/nao_interfaces-release.git
version: 0.0.4-1
source:
type: git
url: https://github.com/ijnek/nao_interfaces.git
version: rolling
status: developed
nao_lola:
doc:
type: git
url: https://github.com/ros-sports/nao_lola.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/nao_lola-release.git
version: 0.0.5-1
source:
type: git
url: https://github.com/ros-sports/nao_lola.git
version: galactic
status: developed
naoqi_bridge_msgs:
doc:
type: git
url: https://github.com/ros-naoqi/naoqi_bridge_msgs2.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-naoqi/naoqi_bridge_msgs2-release.git
version: 2.0.0-0
source:
type: git
url: https://github.com/ros-naoqi/naoqi_bridge_msgs2.git
version: main
status: maintained
naoqi_driver:
doc:
type: git
url: https://github.com/ros-naoqi/naoqi_driver2.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-naoqi/naoqi_driver2-release.git
version: 2.0.0-0
source:
type: git
url: https://github.com/ros-naoqi/naoqi_driver2.git
version: main
status: maintained
naoqi_libqi:
doc:
type: git
url: https://github.com/ros-naoqi/libqi.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-naoqi/libqi-release.git
version: 2.9.7-1
source:
type: git
url: https://github.com/ros-naoqi/libqi.git
version: ros2
status: maintained
naoqi_libqicore:
doc:
type: git
url: https://github.com/ros-naoqi/libqicore.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-naoqi/libqicore-release.git
version: 2.9.7-0
source:
type: git
url: https://github.com/ros-naoqi/libqicore.git
version: ros2
status: maintained
navigation2:
doc:
type: git
url: https://github.com/ros-planning/navigation2.git
version: galactic
release:
packages:
- costmap_queue
- dwb_core
- dwb_critics
- dwb_msgs
- dwb_plugins
- nav2_amcl
- nav2_behavior_tree
- nav2_bringup
- nav2_bt_navigator
- nav2_common
- nav2_controller
- nav2_core
- nav2_costmap_2d
- nav2_dwb_controller
- nav2_gazebo_spawner
- nav2_lifecycle_manager
- nav2_map_server
- nav2_msgs
- nav2_navfn_planner
- nav2_planner
- nav2_recoveries
- nav2_regulated_pure_pursuit_controller
- nav2_rotation_shim_controller
- nav2_rviz_plugins
- nav2_simple_commander
- nav2_smac_planner
- nav2_system_tests
- nav2_theta_star_planner
- nav2_util
- nav2_voxel_grid
- nav2_waypoint_follower
- nav_2d_msgs
- nav_2d_utils
- navigation2
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SteveMacenski/navigation2-release.git
version: 1.0.12-1
source:
type: git
url: https://github.com/ros-planning/navigation2.git
version: galactic
status: developed
navigation_msgs:
doc:
type: git
url: https://github.com/ros-planning/navigation_msgs.git
version: galactic
release:
packages:
- map_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/navigation_msgs-release.git
version: 2.1.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros-planning/navigation_msgs.git
version: galactic
status: maintained
neo_simulation2:
doc:
type: git
url: https://github.com/neobotix/neo_simulation2.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/neobotix/neo_simulation2-release.git
version: 1.0.1-1
source:
type: git
url: https://github.com/neobotix/neo_simulation2.git
version: galactic
status: maintained
nerian_stereo_ros2:
doc:
type: git
url: https://github.com/nerian-vision/nerian_stereo_ros2.git
version: master
release:
packages:
- nerian_stereo
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nerian-vision/nerian_stereo_ros2-release.git
version: 1.1.1-1
source:
type: git
url: https://github.com/nerian-vision/nerian_stereo_ros2.git
version: master
status: developed
nmea_hardware_interface:
doc:
type: git
url: https://github.com/OUXT-Polaris/nmea_hardware_interface.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/nmea_hardware_interface-release.git
version: 0.0.2-1
source:
type: git
url: https://github.com/OUXT-Polaris/nmea_hardware_interface.git
version: master
status: developed
nmea_msgs:
doc:
type: git
url: https://github.com/ros-drivers/nmea_msgs.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/nmea_msgs-release.git
version: 2.0.0-3
source:
type: git
url: https://github.com/ros-drivers/nmea_msgs.git
version: ros2
status: maintained
nodl:
doc:
type: git
url: https://github.com/ubuntu-robotics/nodl.git
version: master
release:
packages:
- nodl_python
- ros2nodl
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/nodl-release.git
version: 0.3.1-2
source:
type: git
url: https://github.com/ubuntu-robotics/nodl.git
version: master
status: developed
nodl_to_policy:
doc:
type: git
url: https://github.com/osrf/nodl_to_policy.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/nodl_to_policy-release.git
version: 1.0.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/osrf/nodl_to_policy.git
version: master
status: maintained
nonpersistent_voxel_layer:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SteveMacenski/nonpersistent_voxel_layer-release.git
version: 2.2.2-1
source:
type: git
url: https://github.com/SteveMacenski/nonpersistent_voxel_layer.git
version: galactic
status: maintained
novatel_gps_driver:
doc:
type: git
url: https://github.com/swri-robotics/novatel_gps_driver.git
version: dashing-devel
release:
packages:
- novatel_gps_driver
- novatel_gps_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/swri-robotics-gbp/novatel_gps_driver-release.git
version: 4.1.0-1
source:
type: git
url: https://github.com/swri-robotics/novatel_gps_driver.git
version: dashing-devel
status: developed
ntpd_driver:
doc:
type: git
url: https://github.com/vooon/ntpd_driver.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/vooon/ntpd_driver-release.git
version: 2.1.0-1
source:
type: git
url: https://github.com/vooon/ntpd_driver.git
version: ros2
status: maintained
ntrip_client:
doc:
type: git
url: https://github.com/LORD-MicroStrain/ntrip_client.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ntrip_client-release.git
version: 1.2.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/LORD-MicroStrain/ntrip_client.git
version: ros2
status: developed
object_recognition_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/object_recognition_msgs-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/wg-perception/object_recognition_msgs.git
version: ros2
status: maintained
octomap:
doc:
type: git
url: https://github.com/octomap/octomap.git
version: devel
release:
packages:
- dynamic_edt_3d
- octomap
- octovis
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/octomap-release.git
version: 1.9.8-1
source:
type: git
url: https://github.com/octomap/octomap.git
version: devel
status: maintained
octomap_mapping:
doc:
type: git
url: https://github.com/OctoMap/octomap_mapping.git
version: ros2
release:
packages:
- octomap_mapping
- octomap_server
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/octomap_mapping-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/OctoMap/octomap_mapping.git
version: ros2
status: maintained
octomap_msgs:
doc:
type: git
url: https://github.com/octomap/octomap_msgs.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/octomap_msgs-release.git
version: 2.0.0-2
source:
type: git
url: https://github.com/octomap/octomap_msgs.git
version: ros2
status: maintained
octomap_ros:
doc:
type: git
url: https://github.com/OctoMap/octomap_ros.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/octomap_ros-release.git
version: 0.4.3-1
source:
type: git
url: https://github.com/OctoMap/octomap_ros.git
version: ros2
status: maintained
octomap_rviz_plugins:
doc:
type: git
url: https://github.com/OctoMap/octomap_rviz_plugins.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/octomap_rviz_plugins-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/OctoMap/octomap_rviz_plugins.git
version: ros2
status: maintained
ompl:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/ompl-release.git
version: 1.5.2-1
open_vins:
doc:
type: git
url: https://github.com/rpng/open_vins.git
version: master
source:
type: git
url: https://github.com/rpng/open_vins.git
version: master
orocos_kinematics_dynamics:
doc:
type: git
url: https://github.com/ros2/orocos_kinematics_dynamics.git
version: galactic
release:
packages:
- orocos_kdl
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/orocos_kinematics_dynamics-release.git
version: 3.4.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/orocos_kinematics_dynamics.git
version: galactic
status: maintained
osqp_vendor:
doc:
type: git
url: https://github.com/tier4/osqp_vendor.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/osqp_vendor-release.git
version: 0.2.0-1
source:
type: git
url: https://github.com/tier4/osqp_vendor.git
version: main
status: maintained
osrf_pycommon:
doc:
type: git
url: https://github.com/osrf/osrf_pycommon.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/osrf_pycommon-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/osrf/osrf_pycommon.git
version: master
status: maintained
osrf_testing_tools_cpp:
doc:
type: git
url: https://github.com/osrf/osrf_testing_tools_cpp.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/osrf_testing_tools_cpp-release.git
version: 1.4.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/osrf/osrf_testing_tools_cpp.git
version: master
status: maintained
ouxt_common:
doc:
type: git
url: https://github.com/OUXT-Polaris/ouxt_common.git
version: master
release:
packages:
- ouxt_common
- ouxt_lint_common
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/ouxt_common-release.git
version: 0.0.8-1
source:
type: git
url: https://github.com/OUXT-Polaris/ouxt_common.git
version: master
status: developed
paho-mqtt-c:
doc:
type: git
url: https://github.com/eclipse/paho.mqtt.c.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/paho.mqtt.c-release.git
version: 1.3.11-1
source:
type: git
url: https://github.com/eclipse/paho.mqtt.c.git
version: master
status: maintained
paho-mqtt-cpp:
doc:
type: git
url: https://github.com/eclipse/paho.mqtt.cpp.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/paho.mqtt.cpp-release.git
version: 1.2.0-1
source:
type: git
url: https://github.com/eclipse/paho.mqtt.cpp.git
version: master
status: maintained
pal_statistics:
doc:
type: git
url: https://github.com/pal-robotics/pal_statistics.git
version: galactic-devel
release:
packages:
- pal_statistics
- pal_statistics_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/pal-gbp/pal_statistics-release.git
version: 2.1.2-1
source:
type: git
url: https://github.com/pal-robotics/pal_statistics.git
version: galactic-devel
status: maintained
pcl_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/pcl_msgs-release.git
version: 1.0.0-6
source:
type: git
url: https://github.com/ros-perception/pcl_msgs.git
version: ros2
status: maintained
pepper_meshes:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-naoqi/pepper_meshes2-release.git
version: 2.0.1-1
status: maintained
perception_pcl:
doc:
type: git
url: https://github.com/ros-perception/perception_pcl.git
version: foxy-devel
release:
packages:
- pcl_conversions
- pcl_ros
- perception_pcl
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/perception_pcl-release.git
version: 2.3.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/perception_pcl.git
version: foxy-devel
status: maintained
performance_test:
doc:
type: git
url: https://gitlab.com/ApexAI/performance_test.git
version: 1.2.1
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/performance_test-release.git
version: 1.2.1-1
source:
type: git
url: https://gitlab.com/ApexAI/performance_test.git
version: master
status: maintained
performance_test_fixture:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/performance_test_fixture-release.git
version: 0.0.9-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/performance_test_fixture.git
version: main
status: maintained
phidgets_drivers:
doc:
type: git
url: https://github.com/ros-drivers/phidgets_drivers.git
version: galactic
release:
packages:
- libphidget22
- phidgets_accelerometer
- phidgets_analog_inputs
- phidgets_api
- phidgets_digital_inputs
- phidgets_digital_outputs
- phidgets_drivers
- phidgets_gyroscope
- phidgets_high_speed_encoder
- phidgets_ik
- phidgets_magnetometer
- phidgets_motors
- phidgets_msgs
- phidgets_spatial
- phidgets_temperature
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/phidgets_drivers-release.git
version: 2.2.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-drivers/phidgets_drivers.git
version: galactic
status: maintained
picknik_ament_copyright:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/PickNikRobotics/picknik_ament_copyright-release.git
version: 0.0.1-1
pinocchio:
doc:
type: git
url: https://github.com/stack-of-tasks/pinocchio.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/pinocchio-release.git
version: 2.6.12-1
source:
type: git
url: https://github.com/stack-of-tasks/pinocchio.git
version: devel
status: developed
plotjuggler:
doc:
type: git
url: https://github.com/facontidavide/PlotJuggler.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/facontidavide/plotjuggler-release.git
version: 3.6.0-1
source:
type: git
url: https://github.com/facontidavide/PlotJuggler.git
version: main
status: developed
plotjuggler_msgs:
doc:
type: git
url: https://github.com/facontidavide/plotjuggler_msgs.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/facontidavide/plotjuggler_msgs-release.git
version: 0.2.3-1
source:
type: git
url: https://github.com/facontidavide/plotjuggler_msgs.git
version: ros2
status: developed
plotjuggler_ros:
doc:
type: git
url: https://github.com/PlotJuggler/plotjuggler-ros-plugins.git
version: rolling
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/PlotJuggler/plotjuggler-ros-plugins-release.git
version: 1.7.3-1
source:
type: git
url: https://github.com/PlotJuggler/plotjuggler-ros-plugins.git
version: rolling
status: developed
pluginlib:
doc:
type: git
url: https://github.com/ros/pluginlib.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/pluginlib-release.git
version: 5.0.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/pluginlib.git
version: galactic
status: maintained
point_cloud_msg_wrapper:
doc:
type: git
url: https://gitlab.com/ApexAI/point_cloud_msg_wrapper
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://gitlab.com/ApexAI/point_cloud_msg_wrapper-release
version: 1.0.7-1
source:
type: git
url: https://gitlab.com/ApexAI/point_cloud_msg_wrapper
version: galactic
status: developed
pointcloud_to_laserscan:
doc:
type: git
url: https://github.com/ros-perception/pointcloud_to_laserscan.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/pointcloud_to_laserscan-release.git
version: 2.0.1-2
source:
type: git
url: https://github.com/ros-perception/pointcloud_to_laserscan.git
version: galactic
status: maintained
popf:
doc:
type: git
url: https://github.com/fmrico/popf.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/fmrico/popf-release.git
version: 0.0.13-1
source:
type: git
url: https://github.com/fmrico/popf.git
version: galactic-devel
status: maintained
pose_cov_ops:
doc:
type: git
url: https://github.com/mrpt-ros-pkg/pose_cov_ops.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/pose_cov_ops-release.git
version: 0.3.8-1
source:
type: git
url: https://github.com/mrpt-ros-pkg/pose_cov_ops.git
version: master
status: maintained
py_trees_ros_interfaces:
doc:
type: git
url: https://github.com/splintered-reality/py_trees_ros_interfaces.git
version: release/2.0.x
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/stonier/py_trees_ros_interfaces-release.git
version: 2.0.3-1
source:
type: git
url: https://github.com/splintered-reality/py_trees_ros_interfaces.git
version: devel
status: maintained
pybind11_vendor:
doc:
type: git
url: https://github.com/ros2/pybind11_vendor.git
version: foxy
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/pybind11_vendor-release.git
version: 2.2.7-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/pybind11_vendor.git
version: foxy
status: maintained
python_cmake_module:
doc:
type: git
url: https://github.com/ros2/python_cmake_module.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/python_cmake_module-release.git
version: 0.8.1-2
source:
type: git
url: https://github.com/ros2/python_cmake_module.git
version: galactic
status: developed
python_qt_binding:
doc:
type: git
url: https://github.com/ros-visualization/python_qt_binding.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/python_qt_binding-release.git
version: 1.0.8-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/python_qt_binding.git
version: galactic-devel
status: maintained
qpoases_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/Autoware-AI/qpoases_vendor-release.git
version: 3.2.3-1
source:
type: git
url: https://github.com/Autoware-AI/qpoases_vendor.git
version: ros2
status: maintained
qt_gui_core:
doc:
type: git
url: https://github.com/ros-visualization/qt_gui_core.git
version: galactic-devel
release:
packages:
- qt_dotgraph
- qt_gui
- qt_gui_app
- qt_gui_core
- qt_gui_cpp
- qt_gui_py_common
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/qt_gui_core-release.git
version: 2.0.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/qt_gui_core.git
version: galactic-devel
status: maintained
quaternion_operation:
doc:
type: git
url: https://github.com/OUXT-Polaris/quaternion_operation.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/quaternion_operation-release.git
version: 0.0.11-1
source:
type: git
url: https://github.com/OUXT-Polaris/quaternion_operation.git
version: ros2
status: maintained
r2r_spl:
doc:
type: git
url: https://github.com/ros-sports/r2r_spl.git
version: galactic
release:
packages:
- r2r_spl_7
- splsm_7
- splsm_7_conversion
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/r2r_spl-release.git
version: 1.0.1-1
source:
type: git
url: https://github.com/ros-sports/r2r_spl.git
version: galactic
status: developed
radar_msgs:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/radar_msgs-release.git
version: 0.2.1-1
status: maintained
random_numbers:
doc:
type: git
url: https://github.com/ros-planning/random_numbers.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/random_numbers-release.git
version: 2.0.1-1
source:
type: git
url: https://github.com/ros-planning/random_numbers.git
version: ros2
status: maintained
rc_common_msgs:
doc:
type: git
url: https://github.com/roboception/rc_common_msgs_ros2.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rc_common_msgs_ros2-release.git
version: 0.5.3-3
source:
test_pull_requests: true
type: git
url: https://github.com/roboception/rc_common_msgs_ros2.git
version: master
status: developed
rc_dynamics_api:
doc:
type: git
url: https://github.com/roboception/rc_dynamics_api.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rc_dynamics_api-release.git
version: 0.10.3-2
source:
test_pull_requests: true
type: git
url: https://github.com/roboception/rc_dynamics_api.git
version: master
status: developed
rc_genicam_api:
doc:
type: git
url: https://github.com/roboception/rc_genicam_api.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rc_genicam_api-release.git
version: 2.5.12-1
source:
test_pull_requests: true
type: git
url: https://github.com/roboception/rc_genicam_api.git
version: master
status: developed
rc_genicam_driver:
doc:
type: git
url: https://github.com/roboception/rc_genicam_driver_ros2.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rc_genicam_driver_ros2-release.git
version: 0.2.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/roboception/rc_genicam_driver_ros2.git
version: master
status: developed
rc_reason_clients:
doc:
type: git
url: https://github.com/roboception/rc_reason_clients_ros2.git
version: master
release:
packages:
- rc_reason_clients
- rc_reason_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/roboception-gbp/rc_reason_clients-release.git
version: 0.3.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/roboception/rc_reason_clients_ros2.git
version: master
status: developed
rcdiscover:
doc:
type: git
url: https://github.com/roboception/rcdiscover.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/roboception-gbp/rcdiscover-release.git
version: 1.1.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/roboception/rcdiscover.git
version: master
status: developed
rcl:
doc:
type: git
url: https://github.com/ros2/rcl.git
version: galactic
release:
packages:
- rcl
- rcl_action
- rcl_lifecycle
- rcl_yaml_param_parser
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rcl-release.git
version: 3.1.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rcl.git
version: galactic
status: maintained
rcl_interfaces:
doc:
type: git
url: https://github.com/ros2/rcl_interfaces.git
version: galactic
release:
packages:
- action_msgs
- builtin_interfaces
- composition_interfaces
- lifecycle_msgs
- rcl_interfaces
- rosgraph_msgs
- statistics_msgs
- test_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rcl_interfaces-release.git
version: 1.0.3-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rcl_interfaces.git
version: galactic
status: maintained
rcl_logging:
doc:
type: git
url: https://github.com/ros2/rcl_logging.git
version: galactic
release:
packages:
- rcl_logging_interface
- rcl_logging_log4cxx
- rcl_logging_noop
- rcl_logging_spdlog
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rcl_logging-release.git
version: 2.1.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rcl_logging.git
version: galactic
status: maintained
rclc:
doc:
type: git
url: https://github.com/ros2/rclc.git
version: galactic
release:
packages:
- rclc
- rclc_examples
- rclc_lifecycle
- rclc_parameter
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rclc-release.git
version: 2.0.6-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rclc.git
version: galactic
status: developed
rclcpp:
doc:
type: git
url: https://github.com/ros2/rclcpp.git
version: galactic
release:
packages:
- rclcpp
- rclcpp_action
- rclcpp_components
- rclcpp_lifecycle
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rclcpp-release.git
version: 9.2.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rclcpp.git
version: galactic
status: maintained
rclpy:
doc:
type: git
url: https://github.com/ros2/rclpy.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rclpy-release.git
version: 1.9.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rclpy.git
version: galactic
status: maintained
rcpputils:
doc:
type: git
url: https://github.com/ros2/rcpputils.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rcpputils-release.git
version: 2.2.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rcpputils.git
version: galactic
status: developed
rcss3d_agent:
doc:
type: git
url: https://github.com/ros-sports/rcss3d_agent.git
version: galactic
release:
packages:
- rcss3d_agent
- rcss3d_agent_basic
- rcss3d_agent_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rcss3d_agent-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/ros-sports/rcss3d_agent.git
version: galactic
status: developed
rcutils:
doc:
type: git
url: https://github.com/ros2/rcutils.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rcutils-release.git
version: 4.0.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rcutils.git
version: galactic
status: maintained
realsense2_camera:
doc:
type: git
url: https://github.com/IntelRealSense/realsense-ros.git
version: ros2-beta
release:
packages:
- realsense2_camera
- realsense2_camera_msgs
- realsense2_description
tags:
release: release/galactic/{package}/{version}
url: https://github.com/IntelRealSense/realsense-ros-release.git
version: 4.51.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/IntelRealSense/realsense-ros.git
version: ros2-beta
status: developed
realtime_support:
doc:
type: git
url: https://github.com/ros2/realtime_support.git
version: galactic
release:
packages:
- rttest
- tlsf_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/realtime_support-release.git
version: 0.11.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/realtime_support.git
version: galactic
status: maintained
realtime_tools:
doc:
type: git
url: https://github.com/ros-controls/realtime_tools.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/realtime_tools-release.git
version: 2.2.0-1
source:
type: git
url: https://github.com/ros-controls/realtime_tools.git
version: foxy-devel
status: maintained
resource_retriever:
doc:
type: git
url: https://github.com/ros/resource_retriever.git
version: galactic
release:
packages:
- libcurl_vendor
- resource_retriever
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/resource_retriever-release.git
version: 2.5.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros/resource_retriever.git
version: galactic
status: maintained
rmf_battery:
doc:
type: git
url: https://github.com/open-rmf/rmf_battery.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_battery-release.git
version: 0.1.2-1
source:
type: git
url: https://github.com/open-rmf/rmf_battery.git
version: galactic
status: developed
rmf_building_map_msgs:
doc:
type: git
url: https://github.com/open-rmf/rmf_building_map_msgs.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_building_map_msgs-release.git
version: 1.2.0-2
source:
type: git
url: https://github.com/open-rmf/rmf_building_map_msgs.git
version: main
status: developed
rmf_cmake_uncrustify:
doc:
type: git
url: https://github.com/open-rmf/rmf_cmake_uncrustify.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_cmake_uncrustify-release.git
version: 1.2.0-2
source:
type: git
url: https://github.com/open-rmf/rmf_cmake_uncrustify.git
version: galactic
status: developed
rmf_demos:
doc:
type: git
url: https://github.com/open-rmf/rmf_demos.git
version: galactic
release:
packages:
- rmf_demos
- rmf_demos_assets
- rmf_demos_dashboard_resources
- rmf_demos_gz
- rmf_demos_ign
- rmf_demos_maps
- rmf_demos_panel
- rmf_demos_tasks
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_demos-release.git
version: 1.3.2-1
source:
type: git
url: https://github.com/open-rmf/rmf_demos.git
version: galactic
status: developed
rmf_internal_msgs:
doc:
type: git
url: https://github.com/open-rmf/rmf_internal_msgs.git
version: galactic
release:
packages:
- rmf_charger_msgs
- rmf_dispenser_msgs
- rmf_door_msgs
- rmf_fleet_msgs
- rmf_ingestor_msgs
- rmf_lift_msgs
- rmf_task_msgs
- rmf_traffic_msgs
- rmf_workcell_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_internal_msgs-release.git
version: 1.4.0-1
source:
type: git
url: https://github.com/open-rmf/rmf_internal_msgs.git
version: galactic
status: developed
rmf_ros2:
doc:
type: git
url: https://github.com/open-rmf/rmf_ros2.git
version: galactic
release:
packages:
- rmf_fleet_adapter
- rmf_fleet_adapter_python
- rmf_task_ros2
- rmf_traffic_ros2
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_ros2-release.git
version: 1.4.0-1
source:
type: git
url: https://github.com/open-rmf/rmf_ros2.git
version: galactic
status: developed
rmf_simulation:
doc:
type: git
url: https://github.com/open-rmf/rmf_simulation.git
version: galactic
release:
packages:
- rmf_building_sim_common
- rmf_building_sim_gazebo_plugins
- rmf_building_sim_ignition_plugins
- rmf_robot_sim_common
- rmf_robot_sim_gazebo_plugins
- rmf_robot_sim_ignition_plugins
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_simulation-release.git
version: 1.3.1-1
source:
type: git
url: https://github.com/open-rmf/rmf_simulation.git
version: galactic
status: developed
rmf_task:
doc:
type: git
url: https://github.com/open-rmf/rmf_task.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_task-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/open-rmf/rmf_task.git
version: galactic
status: developed
rmf_traffic:
doc:
type: git
url: https://github.com/open-rmf/rmf_traffic.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_traffic-release.git
version: 1.4.1-1
source:
type: git
url: https://github.com/open-rmf/rmf_traffic.git
version: galactic
status: developed
rmf_traffic_editor:
doc:
type: git
url: https://github.com/open-rmf/rmf_traffic_editor.git
version: galactic
release:
packages:
- rmf_building_map_tools
- rmf_traffic_editor
- rmf_traffic_editor_assets
- rmf_traffic_editor_test_maps
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_traffic_editor-release.git
version: 1.4.0-1
source:
type: git
url: https://github.com/open-rmf/rmf_traffic_editor.git
version: galactic
status: developed
rmf_utils:
doc:
type: git
url: https://github.com/open-rmf/rmf_utils.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_utils-release.git
version: 1.3.0-1
source:
type: git
url: https://github.com/open-rmf/rmf_utils.git
version: galactic
status: developed
rmf_visualization:
doc:
type: git
url: https://github.com/open-rmf/rmf_visualization.git
version: galactic
release:
packages:
- rmf_visualization
- rmf_visualization_building_systems
- rmf_visualization_fleet_states
- rmf_visualization_rviz2_plugins
- rmf_visualization_schedule
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_visualization-release.git
version: 1.2.1-1
source:
type: git
url: https://github.com/open-rmf/rmf_visualization.git
version: galactic
status: developed
rmf_visualization_msgs:
doc:
type: git
url: https://github.com/open-rmf/rmf_visualization_msgs.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmf_visualization_msgs-release.git
version: 1.2.0-1
source:
type: git
url: https://github.com/open-rmf/rmf_visualization_msgs.git
version: galactic
status: developed
rmw:
doc:
type: git
url: https://github.com/ros2/rmw.git
version: galactic
release:
packages:
- rmw
- rmw_implementation_cmake
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw-release.git
version: 3.3.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rmw.git
version: galactic
status: maintained
rmw_connextdds:
doc:
type: git
url: https://github.com/ros2/rmw_connextdds.git
version: galactic
release:
packages:
- rmw_connextdds
- rmw_connextdds_common
- rti_connext_dds_cmake_module
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw_connextdds-release.git
version: 0.6.3-1
source:
type: git
url: https://github.com/ros2/rmw_connextdds.git
version: galactic
status: developed
rmw_cyclonedds:
doc:
type: git
url: https://github.com/ros2/rmw_cyclonedds.git
version: galactic
release:
packages:
- rmw_cyclonedds_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw_cyclonedds-release.git
version: 0.22.6-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rmw_cyclonedds.git
version: galactic
status: developed
rmw_dds_common:
doc:
type: git
url: https://github.com/ros2/rmw_dds_common.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw_dds_common-release.git
version: 1.2.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rmw_dds_common.git
version: galactic
status: maintained
rmw_fastrtps:
doc:
type: git
url: https://github.com/ros2/rmw_fastrtps.git
version: galactic
release:
packages:
- rmw_fastrtps_cpp
- rmw_fastrtps_dynamic_cpp
- rmw_fastrtps_shared_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw_fastrtps-release.git
version: 5.0.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rmw_fastrtps.git
version: galactic
status: developed
rmw_gurumdds:
doc:
type: git
url: https://github.com/ros2/rmw_gurumdds.git
version: galactic
release:
packages:
- rmw_gurumdds_cpp
- rmw_gurumdds_shared_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw_gurumdds-release.git
version: 2.3.0-1
source:
type: git
url: https://github.com/ros2/rmw_gurumdds.git
version: galactic
status: developed
rmw_implementation:
doc:
type: git
url: https://github.com/ros2/rmw_implementation.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rmw_implementation-release.git
version: 2.4.1-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rmw_implementation.git
version: galactic
status: developed
robot_localization:
doc:
type: git
url: https://github.com/cra-ros-pkg/robot_localization.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/cra-ros-pkg/robot_localization-release.git
version: 3.2.4-1
robot_state_publisher:
doc:
type: git
url: https://github.com/ros/robot_state_publisher.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/robot_state_publisher-release.git
version: 2.5.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/robot_state_publisher.git
version: galactic
status: maintained
robot_upstart:
doc:
type: git
url: https://github.com/clearpathrobotics/robot_upstart.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/clearpath-gbp/robot_upstart-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/clearpathrobotics/robot_upstart.git
version: foxy-devel
status: maintained
ros1_bridge:
doc:
type: git
url: https://github.com/ros2/ros1_bridge.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros1_bridge-release.git
version: 0.10.1-2
source:
test_commits: false
type: git
url: https://github.com/ros2/ros1_bridge.git
version: galactic
status: maintained
ros2_control:
doc:
type: git
url: https://github.com/ros-controls/ros2_control.git
version: galactic
release:
packages:
- controller_interface
- controller_manager
- controller_manager_msgs
- hardware_interface
- ros2_control
- ros2_control_test_assets
- ros2controlcli
- transmission_interface
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_control-release.git
version: 1.6.0-1
source:
type: git
url: https://github.com/ros-controls/ros2_control.git
version: galactic
status: developed
ros2_controllers:
doc:
type: git
url: https://github.com/ros-controls/ros2_controllers.git
version: galactic
release:
packages:
- diff_drive_controller
- effort_controllers
- force_torque_sensor_broadcaster
- forward_command_controller
- gripper_controllers
- imu_sensor_broadcaster
- joint_state_broadcaster
- joint_trajectory_controller
- position_controllers
- ros2_controllers
- ros2_controllers_test_nodes
- velocity_controllers
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_controllers-release.git
version: 1.5.1-1
source:
type: git
url: https://github.com/ros-controls/ros2_controllers.git
version: galactic
status: developed
ros2_ouster_drivers:
doc:
type: git
url: https://github.com/SteveMacenski/ros2_ouster_drivers.git
version: foxy-devel
release:
packages:
- ouster_msgs
- ros2_ouster
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_ouster_drivers-release.git
version: 0.3.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/SteveMacenski/ros2_ouster_drivers.git
version: foxy-devel
status: maintained
ros2_planning_system:
doc:
type: git
url: https://github.com/IntelligentRoboticsLabs/ros2_planning_system.git
version: galactic-devel
release:
packages:
- plansys2_bringup
- plansys2_bt_actions
- plansys2_core
- plansys2_domain_expert
- plansys2_executor
- plansys2_lifecycle_manager
- plansys2_msgs
- plansys2_pddl_parser
- plansys2_planner
- plansys2_popf_plan_solver
- plansys2_problem_expert
- plansys2_terminal
- plansys2_tools
tags:
release: release/galactic/{package}/{version}
url: https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release.git
version: 2.0.8-1
source:
type: git
url: https://github.com/IntelligentRoboticsLabs/ros2_planning_system.git
version: galactic-devel
status: developed
ros2_socketcan:
doc:
type: git
url: https://github.com/autowarefoundation/ros2_socketcan.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_socketcan-release.git
version: 1.1.0-1
source:
type: git
url: https://github.com/autowarefoundation/ros2_socketcan.git
version: main
status: developed
ros2_tracing:
doc:
type: git
url: https://github.com/ros2/ros2_tracing.git
version: galactic
release:
packages:
- ros2trace
- tracetools
- tracetools_launch
- tracetools_read
- tracetools_test
- tracetools_trace
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_tracing-release.git
version: 2.3.0-2
source:
type: git
url: https://github.com/ros2/ros2_tracing.git
version: galactic
status: developed
ros2cli:
doc:
type: git
url: https://github.com/ros2/ros2cli.git
version: galactic
release:
packages:
- ros2action
- ros2cli
- ros2cli_test_interfaces
- ros2component
- ros2doctor
- ros2interface
- ros2lifecycle
- ros2lifecycle_test_fixtures
- ros2multicast
- ros2node
- ros2param
- ros2pkg
- ros2run
- ros2service
- ros2topic
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2cli-release.git
version: 0.13.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/ros2cli.git
version: galactic
status: maintained
ros2cli_common_extensions:
doc:
type: git
url: https://github.com/ros2/ros2cli_common_extensions.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2cli_common_extensions-release.git
version: 0.1.1-2
source:
type: git
url: https://github.com/ros2/ros2cli_common_extensions.git
version: galactic
status: maintained
ros2launch_security:
doc:
type: git
url: https://github.com/osrf/ros2launch_security.git
version: main
release:
packages:
- ros2launch_security
- ros2launch_security_examples
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2launch_security-release.git
version: 1.0.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/osrf/ros2launch_security.git
version: main
status: maintained
ros_amr_interop:
doc:
type: git
url: https://github.com/inorbit-ai/ros_amr_interop.git
version: galactic-devel
release:
packages:
- massrobotics_amr_sender
- vda5050_connector
- vda5050_msgs
- vda5050_serializer
tags:
release: release/galactic/{package}/{version}
url: https://github.com/inorbit-ai/ros_amr_interop-release.git
version: 1.1.1-2
source:
type: git
url: https://github.com/inorbit-ai/ros_amr_interop.git
version: galactic-devel
status: developed
ros_canopen:
release:
packages:
- can_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_canopen-release.git
version: 2.0.0-3
source:
type: git
url: https://github.com/ros-industrial/ros_canopen.git
version: dashing-devel
status: developed
ros_environment:
doc:
type: git
url: https://github.com/ros/ros_environment.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_environment-release.git
version: 3.1.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/ros_environment.git
version: galactic
status: maintained
ros_ign:
doc:
type: git
url: https://github.com/ignitionrobotics/ros_ign.git
version: galactic
release:
packages:
- ros_ign
- ros_ign_bridge
- ros_ign_gazebo
- ros_ign_gazebo_demos
- ros_ign_image
- ros_ign_interfaces
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_ign-release.git
version: 0.233.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/ignitionrobotics/ros_ign.git
version: galactic
status: developed
ros_image_to_qimage:
doc:
type: git
url: https://github.com/ros-sports/ros_image_to_qimage.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_image_to_qimage-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/ros-sports/ros_image_to_qimage.git
version: galactic
status: developed
ros_testing:
doc:
type: git
url: https://github.com/ros2/ros_testing.git
version: galactic
release:
packages:
- ros2test
- ros_testing
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_testing-release.git
version: 0.3.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/ros_testing.git
version: galactic
status: maintained
ros_workspace:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_workspace-release.git
version: 1.0.2-2
source:
type: git
url: https://github.com/ros2/ros_workspace.git
version: latest
status: maintained
rosbag2:
doc:
type: git
url: https://github.com/ros2/rosbag2.git
version: galactic
release:
packages:
- ros2bag
- rosbag2
- rosbag2_compression
- rosbag2_compression_zstd
- rosbag2_cpp
- rosbag2_interfaces
- rosbag2_performance_benchmarking
- rosbag2_py
- rosbag2_storage
- rosbag2_storage_default_plugins
- rosbag2_test_common
- rosbag2_tests
- rosbag2_transport
- shared_queues_vendor
- sqlite3_vendor
- zstd_vendor
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosbag2-release.git
version: 0.9.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosbag2.git
version: galactic
status: developed
rosbag2_bag_v2:
doc:
type: git
url: https://github.com/ros2/rosbag2_bag_v2.git
version: galactic
release:
packages:
- ros1_rosbag_storage_vendor
- rosbag2_bag_v2_plugins
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosbag2_bag_v2-release.git
version: 0.2.0-1
source:
test_commits: false
type: git
url: https://github.com/ros2/rosbag2_bag_v2.git
version: galactic
status: maintained
rosbag2_storage_mcap:
doc:
type: git
url: https://github.com/ros-tooling/rosbag2_storage_mcap.git
version: main
release:
packages:
- mcap_vendor
- rosbag2_storage_mcap
- rosbag2_storage_mcap_testdata
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosbag2_storage_mcap-release.git
version: 0.6.0-1
source:
type: git
url: https://github.com/ros-tooling/rosbag2_storage_mcap.git
version: main
status: developed
rosbridge_suite:
doc:
type: git
url: https://github.com/RobotWebTools/rosbridge_suite.git
version: ros2
release:
packages:
- rosapi
- rosapi_msgs
- rosbridge_library
- rosbridge_msgs
- rosbridge_server
- rosbridge_suite
- rosbridge_test_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosbridge_suite-release.git
version: 1.3.1-1
source:
type: git
url: https://github.com/RobotWebTools/rosbridge_suite.git
version: ros2
status: maintained
rosidl:
doc:
type: git
url: https://github.com/ros2/rosidl.git
version: galactic
release:
packages:
- rosidl_adapter
- rosidl_cli
- rosidl_cmake
- rosidl_generator_c
- rosidl_generator_cpp
- rosidl_parser
- rosidl_runtime_c
- rosidl_runtime_cpp
- rosidl_typesupport_interface
- rosidl_typesupport_introspection_c
- rosidl_typesupport_introspection_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl-release.git
version: 2.2.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl.git
version: galactic
status: maintained
rosidl_dds:
doc:
type: git
url: https://github.com/ros2/rosidl_dds.git
version: galactic
release:
packages:
- rosidl_generator_dds_idl
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_dds-release.git
version: 0.8.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl_dds.git
version: galactic
status: maintained
rosidl_defaults:
doc:
type: git
url: https://github.com/ros2/rosidl_defaults.git
version: galactic
release:
packages:
- rosidl_default_generators
- rosidl_default_runtime
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_defaults-release.git
version: 1.1.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl_defaults.git
version: galactic
status: maintained
rosidl_python:
doc:
type: git
url: https://github.com/ros2/rosidl_python.git
version: galactic
release:
packages:
- rosidl_generator_py
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_python-release.git
version: 0.11.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl_python.git
version: galactic
status: maintained
rosidl_runtime_py:
doc:
type: git
url: https://github.com/ros2/rosidl_runtime_py.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_runtime_py-release.git
version: 0.9.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl_runtime_py.git
version: galactic
status: maintained
rosidl_typesupport:
doc:
type: git
url: https://github.com/ros2/rosidl_typesupport.git
version: galactic
release:
packages:
- rosidl_typesupport_c
- rosidl_typesupport_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_typesupport-release.git
version: 1.2.1-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl_typesupport.git
version: galactic
status: maintained
rosidl_typesupport_fastrtps:
doc:
type: git
url: https://github.com/ros2/rosidl_typesupport_fastrtps.git
version: galactic
release:
packages:
- fastrtps_cmake_module
- rosidl_typesupport_fastrtps_c
- rosidl_typesupport_fastrtps_cpp
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_typesupport_fastrtps-release.git
version: 1.2.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rosidl_typesupport_fastrtps.git
version: galactic
status: developed
rosidl_typesupport_gurumdds:
doc:
type: git
url: https://github.com/ros2/rosidl_typesupport_gurumdds.git
version: galactic
release:
packages:
- gurumdds_cmake_module
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rosidl_typesupport_gurumdds-release.git
version: 2.1.1-1
source:
type: git
url: https://github.com/ros2/rosidl_typesupport_gurumdds.git
version: galactic
status: developed
rospy_message_converter:
doc:
type: git
url: https://github.com/uos/rospy_message_converter.git
version: galactic
release:
packages:
- rclpy_message_converter
- rclpy_message_converter_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rospy_message_converter-release.git
version: 2.0.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/uos/rospy_message_converter.git
version: galactic
status: maintained
rplidar_ros:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rplidar_ros-release.git
version: 2.1.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/allenh1/rplidar_ros.git
version: ros2
status: developed
rpyutils:
doc:
type: git
url: https://github.com/ros2/rpyutils.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rpyutils-release.git
version: 0.2.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rpyutils.git
version: galactic
status: developed
rqt:
doc:
type: git
url: https://github.com/ros-visualization/rqt.git
version: crystal-devel
release:
packages:
- rqt
- rqt_gui
- rqt_gui_cpp
- rqt_gui_py
- rqt_py_common
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt-release.git
version: 1.1.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/rqt.git
version: crystal-devel
status: maintained
rqt_action:
doc:
type: git
url: https://github.com/ros-visualization/rqt_action.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_action-release.git
version: 2.0.1-1
source:
type: git
url: https://github.com/ros-visualization/rqt_action.git
version: galactic
status: maintained
rqt_bag:
doc:
type: git
url: https://github.com/ros-visualization/rqt_bag.git
version: ros2
release:
packages:
- rqt_bag
- rqt_bag_plugins
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_bag-release.git
version: 1.1.2-1
source:
type: git
url: https://github.com/ros-visualization/rqt_bag.git
version: ros2
status: maintained
rqt_common_plugins:
doc:
type: git
url: https://github.com/ros-visualization/rqt_common_plugins.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_common_plugins-release.git
version: 1.1.0-2
source:
type: git
url: https://github.com/ros-visualization/rqt_common_plugins.git
version: galactic
status: maintained
rqt_console:
doc:
type: git
url: https://github.com/ros-visualization/rqt_console.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_console-release.git
version: 2.0.2-2
source:
type: git
url: https://github.com/ros-visualization/rqt_console.git
version: galactic
status: maintained
rqt_graph:
doc:
type: git
url: https://github.com/ros-visualization/rqt_graph.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_graph-release.git
version: 1.2.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/rqt_graph.git
version: galactic-devel
status: maintained
rqt_image_overlay:
doc:
type: git
url: https://github.com/ros-sports/rqt_image_overlay.git
version: galactic
release:
packages:
- rqt_image_overlay
- rqt_image_overlay_layer
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_image_overlay-release.git
version: 0.0.9-1
source:
type: git
url: https://github.com/ros-sports/rqt_image_overlay.git
version: galactic
status: developed
rqt_image_view:
doc:
type: git
url: https://github.com/ros-visualization/rqt_image_view.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_image_view-release.git
version: 1.1.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/rqt_image_view.git
version: foxy-devel
status: maintained
rqt_moveit:
doc:
type: git
url: https://github.com/ros-visualization/rqt_moveit.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_moveit-release.git
version: 1.0.1-2
source:
type: git
url: https://github.com/ros-visualization/rqt_moveit.git
version: ros2
status: maintained
rqt_msg:
doc:
type: git
url: https://github.com/ros-visualization/rqt_msg.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_msg-release.git
version: 1.1.0-1
source:
type: git
url: https://github.com/ros-visualization/rqt_msg.git
version: galactic
status: maintained
rqt_plot:
doc:
type: git
url: https://github.com/ros-visualization/rqt_plot.git
version: foxy-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_plot-release.git
version: 1.1.1-1
source:
type: git
url: https://github.com/ros-visualization/rqt_plot.git
version: foxy-devel
status: maintained
rqt_publisher:
doc:
type: git
url: https://github.com/ros-visualization/rqt_publisher.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_publisher-release.git
version: 1.1.3-1
source:
type: git
url: https://github.com/ros-visualization/rqt_publisher.git
version: galactic
status: maintained
rqt_py_console:
doc:
type: git
url: https://github.com/ros-visualization/rqt_py_console.git
version: crystal-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_py_console-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/ros-visualization/rqt_py_console.git
version: crystal-devel
status: maintained
rqt_reconfigure:
doc:
type: git
url: https://github.com/ros-visualization/rqt_reconfigure.git
version: dashing
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_reconfigure-release.git
version: 1.0.8-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/rqt_reconfigure.git
version: dashing
status: maintained
rqt_robot_dashboard:
doc:
type: git
url: https://github.com/ros-visualization/rqt_robot_dashboard.git
version: ROS2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/rqt_robot_dashboard-release.git
version: 0.6.1-1
source:
type: git
url: https://github.com/ros-visualization/rqt_robot_dashboard.git
version: ROS2
status: maintained
rqt_robot_monitor:
doc:
type: git
url: https://github.com/ros-visualization/rqt_robot_monitor.git
version: dashing-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_robot_monitor-release.git
version: 1.0.5-1
source:
type: git
url: https://github.com/ros-visualization/rqt_robot_monitor.git
version: dashing-devel
status: maintained
rqt_robot_steering:
doc:
type: git
url: https://github.com/ros-visualization/rqt_robot_steering.git
version: dashing-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_robot_steering-release.git
version: 1.0.0-3
source:
type: git
url: https://github.com/ros-visualization/rqt_robot_steering.git
version: dashing-devel
status: maintained
rqt_runtime_monitor:
doc:
type: git
url: https://github.com/ros-visualization/rqt_runtime_monitor.git
version: rolling
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_runtime_monitor-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/ros-visualization/rqt_runtime_monitor.git
version: rolling
status: maintained
rqt_service_caller:
doc:
type: git
url: https://github.com/ros-visualization/rqt_service_caller.git
version: crystal-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_service_caller-release.git
version: 1.0.5-1
source:
type: git
url: https://github.com/ros-visualization/rqt_service_caller.git
version: crystal-devel
status: maintained
rqt_shell:
doc:
type: git
url: https://github.com/ros-visualization/rqt_shell.git
version: crystal-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_shell-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/ros-visualization/rqt_shell.git
version: crystal-devel
status: maintained
rqt_srv:
doc:
type: git
url: https://github.com/ros-visualization/rqt_srv.git
version: crystal-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_srv-release.git
version: 1.0.3-1
source:
type: git
url: https://github.com/ros-visualization/rqt_srv.git
version: crystal-devel
status: maintained
rqt_tf_tree:
doc:
type: git
url: https://github.com/ros-visualization/rqt_tf_tree.git
version: dashing-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_tf_tree-release.git
version: 1.0.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/rqt_tf_tree.git
version: dashing-devel
status: maintained
rqt_top:
doc:
type: git
url: https://github.com/ros-visualization/rqt_top.git
version: crystal-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_top-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/ros-visualization/rqt_top.git
version: crystal-devel
status: maintained
rqt_topic:
doc:
type: git
url: https://github.com/ros-visualization/rqt_topic.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rqt_topic-release.git
version: 1.4.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-visualization/rqt_topic.git
version: galactic
status: maintained
rslidar_msg:
doc:
type: git
url: https://github.com/RoboSense-LiDAR/rslidar_msg.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/rslidar_msg-release.git
version: 1.3.0-1
source:
type: git
url: https://github.com/RoboSense-LiDAR/rslidar_msg.git
version: master
status: maintained
rslidar_sdk:
doc:
type: git
url: https://github.com/RoboSense-LiDAR/rslidar_sdk.git
version: dev
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/rslidar_sdk-release.git
version: 1.3.2-1
source:
type: git
url: https://github.com/RoboSense-LiDAR/rslidar_sdk.git
version: dev
status: maintained
rt_manipulators_cpp:
doc:
type: git
url: https://github.com/rt-net/rt_manipulators_cpp.git
version: ros2
release:
packages:
- rt_manipulators_cpp
- rt_manipulators_examples
tags:
release: release/galactic/{package}/{version}
url: https://github.com/rt-net-gbp/rt_manipulators_cpp-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/rt-net/rt_manipulators_cpp.git
version: ros2
status: maintained
rtabmap:
doc:
type: git
url: https://github.com/introlab/rtabmap.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/introlab/rtabmap-release.git
version: 0.20.21-1
source:
type: git
url: https://github.com/introlab/rtabmap.git
version: galactic-devel
status: maintained
rtabmap_ros:
doc:
type: git
url: https://github.com/introlab/rtabmap_ros.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/introlab/rtabmap_ros-release.git
version: 0.20.20-1
source:
type: git
url: https://github.com/introlab/rtabmap_ros.git
version: galactic-devel
status: developed
rtcm_msgs:
doc:
type: git
url: https://github.com/tilk/rtcm_msgs.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/nobleo/rtcm_msgs-release.git
version: 1.1.6-1
source:
type: git
url: https://github.com/tilk/rtcm_msgs.git
version: master
status: maintained
ruckig:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/pantor/ruckig-release.git
version: 0.6.3-1
source:
type: git
url: https://github.com/pantor/ruckig.git
version: master
status: developed
rviz:
doc:
type: git
url: https://github.com/ros2/rviz.git
version: galactic
release:
packages:
- rviz2
- rviz_assimp_vendor
- rviz_common
- rviz_default_plugins
- rviz_ogre_vendor
- rviz_rendering
- rviz_rendering_tests
- rviz_visual_testing_framework
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/rviz-release.git
version: 8.5.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/rviz.git
version: galactic
status: maintained
rviz_visual_tools:
doc:
type: git
url: https://github.com/PickNikRobotics/rviz_visual_tools.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/PickNikRobotics/rviz_visual_tools-release.git
version: 4.1.2-1
source:
type: git
url: https://github.com/PickNikRobotics/rviz_visual_tools.git
version: ros2
status: maintained
sbg_driver:
doc:
type: git
url: https://github.com/SBG-Systems/sbg_ros2.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SBG-Systems/sbg_ros2-release.git
version: 3.1.0-1
source:
type: git
url: https://github.com/SBG-Systems/sbg_ros2.git
version: master
status: developed
sdformat_urdf:
doc:
type: git
url: https://github.com/ros/sdformat_urdf.git
version: galactic
release:
packages:
- sdformat_test_files
- sdformat_urdf
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/sdformat_urdf-release.git
version: 0.1.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros/sdformat_urdf.git
version: galactic
status: maintained
septentrio_gnss_driver:
doc:
type: git
url: https://github.com/septentrio-gnss/septentrio_gnss_driver.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/septentrio-users/septentrio_gnss_driver_ros2-release.git
version: 1.2.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/septentrio-gnss/septentrio_gnss_driver.git
version: ros2
status: maintained
sick_safetyscanners2:
doc:
type: git
url: https://github.com/SICKAG/sick_safetyscanners2.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SICKAG/sick_safetyscanners2-release.git
version: 1.0.3-2
source:
type: git
url: https://github.com/SICKAG/sick_safetyscanners2.git
version: master
status: developed
sick_safetyscanners2_interfaces:
doc:
type: git
url: https://github.com/SICKAG/sick_safetyscanners2_interfaces.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SICKAG/sick_safetyscanners2_interfaces-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/SICKAG/sick_safetyscanners2_interfaces.git
version: master
status: developed
sick_safetyscanners_base:
doc:
type: git
url: https://github.com/SICKAG/sick_safetyscanners_base.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SICKAG/sick_safetyscanners_base-release.git
version: 1.0.1-1
source:
type: git
url: https://github.com/SICKAG/sick_safetyscanners_base.git
version: ros2
status: developed
simple_actions:
doc:
type: git
url: https://github.com/DLu/simple_actions.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/DLu/simple_actions-release.git
version: 0.2.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/DLu/simple_actions.git
version: main
status: developed
simple_launch:
doc:
type: git
url: https://github.com/oKermorgant/simple_launch.git
version: 1.0.2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/simple_launch-release.git
version: 1.6.1-1
source:
type: git
url: https://github.com/oKermorgant/simple_launch.git
version: devel
status: maintained
slam_toolbox:
doc:
type: git
url: https://github.com/SteveMacenski/slam_toolbox.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SteveMacenski/slam_toolbox-release.git
version: 2.5.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/SteveMacenski/slam_toolbox.git
version: galactic
status: maintained
slg_msgs:
doc:
type: git
url: https://github.com/ajtudela/slg_msgs.git
version: galactic
status: maintained
slider_publisher:
doc:
type: git
url: https://github.com/oKermorgant/slider_publisher.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/slider_publisher-release.git
version: 2.2.1-1
source:
type: git
url: https://github.com/oKermorgant/slider_publisher.git
version: ros2
status: maintained
snowbot_operating_system:
doc:
type: git
url: https://github.com/PickNikRobotics/snowbot_operating_system.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/PickNikRobotics/snowbot_release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/PickNikRobotics/snowbot_operating_system.git
version: ros2
status: maintained
soccer_object_msgs:
doc:
type: git
url: https://github.com/ijnek/soccer_object_msgs.git
version: rolling
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ijnek/soccer_object_msgs-release.git
version: 1.0.1-1
source:
type: git
url: https://github.com/ijnek/soccer_object_msgs.git
version: rolling
status: developed
soccer_visualization:
doc:
type: git
url: https://github.com/ijnek/soccer_visualization.git
version: rolling
release:
packages:
- soccer_marker_generation
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ijnek/soccer_visualization-release.git
version: 0.0.2-1
source:
type: git
url: https://github.com/ijnek/soccer_visualization.git
version: rolling
status: developed
sol_vendor:
doc:
type: git
url: https://github.com/OUXT-Polaris/sol_vendor.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/OUXT-Polaris/sol_vendor-release.git
version: 0.0.3-1
source:
type: git
url: https://github.com/OUXT-Polaris/sol_vendor.git
version: main
status: developed
sophus:
doc:
type: git
url: https://github.com/stonier/sophus.git
version: release/1.2.x
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/yujinrobot-release/sophus-release.git
version: 1.2.1-1
source:
type: git
url: https://github.com/stonier/sophus.git
version: release/1.2.x
status: maintained
spatio_temporal_voxel_layer:
doc:
type: git
url: https://github.com/SteveMacenski/spatio_temporal_voxel_layer.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/SteveMacenski/spatio_temporal_voxel_layer-release.git
version: 2.2.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/SteveMacenski/spatio_temporal_voxel_layer.git
version: galactic
status: maintained
spdlog_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/spdlog_vendor-release.git
version: 1.3.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/spdlog_vendor.git
version: galactic
status: maintained
srdfdom:
doc:
type: git
url: https://github.com/ros-planning/srdfdom.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/srdfdom-release.git
version: 2.0.3-1
source:
type: git
url: https://github.com/ros-planning/srdfdom.git
version: ros2
status: maintained
sros2:
doc:
type: git
url: https://github.com/ros2/sros2.git
version: galactic
release:
packages:
- sros2
- sros2_cmake
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/sros2-release.git
version: 0.10.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/sros2.git
version: galactic
status: developed
stair_step_detector:
doc:
type: git
url: https://github.com/peter-nebe/stair-step-detector.git
version: master
source:
type: git
url: https://github.com/peter-nebe/stair-step-detector.git
version: master
status: developed
stubborn_buddies:
doc:
type: git
url: https://github.com/open-rmf/stubborn_buddies.git
version: galactic
release:
packages:
- stubborn_buddies
- stubborn_buddies_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/stubborn_buddies-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/open-rmf/stubborn_buddies.git
version: galactic
status: developed
swri_console:
doc:
type: git
url: https://github.com/swri-robotics/swri_console.git
version: ros2-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/swri_console-release.git
version: 2.0.1-1
source:
type: git
url: https://github.com/swri-robotics/swri_console.git
version: ros2-devel
status: developed
system_fingerprint:
doc:
type: git
url: https://github.com/MetroRobots/ros_system_fingerprint.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/MetroRobots/ros_system_fingerprint-release.git
version: 0.7.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/MetroRobots/ros_system_fingerprint.git
version: ros2
status: developed
system_modes:
doc:
type: git
url: https://github.com/micro-ROS/system_modes.git
version: master
release:
packages:
- launch_system_modes
- system_modes
- system_modes_examples
- system_modes_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/system_modes-release.git
version: 0.9.0-3
source:
test_pull_requests: true
type: git
url: https://github.com/micro-ROS/system_modes.git
version: master
status: developed
system_tests:
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/system_tests.git
version: galactic
status: developed
tango_icons_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tango_icons_vendor-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/ros-visualization/tango_icons_vendor.git
version: galactic
status: maintained
teleop_tools:
doc:
type: git
url: https://github.com/ros-teleop/teleop_tools.git
version: foxy-devel
release:
packages:
- joy_teleop
- key_teleop
- mouse_teleop
- teleop_tools
- teleop_tools_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/teleop_tools-release.git
version: 1.3.0-1
source:
type: git
url: https://github.com/ros-teleop/teleop_tools.git
version: foxy-devel
status: maintained
teleop_twist_joy:
doc:
type: git
url: https://github.com/ros2/teleop_twist_joy.git
version: foxy
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/teleop_twist_joy-release.git
version: 2.4.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/teleop_twist_joy.git
version: foxy
status: maintained
teleop_twist_keyboard:
doc:
type: git
url: https://github.com/ros2/teleop_twist_keyboard.git
version: dashing
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/teleop_twist_keyboard-release.git
version: 2.3.2-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/teleop_twist_keyboard.git
version: dashing
status: maintained
tensorrt_cmake_module:
doc:
type: git
url: https://github.com/tier4/tensorrt_cmake_module.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tensorrt_cmake_module-release.git
version: 0.0.3-1
source:
type: git
url: https://github.com/tier4/tensorrt_cmake_module.git
version: main
status: maintained
test_interface_files:
doc:
type: git
url: https://github.com/ros2/test_interface_files.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/test_interface_files-release.git
version: 0.8.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/test_interface_files.git
version: galactic
status: maintained
tf_transformations:
doc:
type: git
url: https://github.com/DLu/tf_transformations.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/DLu/tf_transformations_release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/DLu/tf_transformations.git
version: main
status: maintained
tinyxml2_vendor:
doc:
type: git
url: https://github.com/ros2/tinyxml2_vendor.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tinyxml2_vendor-release.git
version: 0.7.4-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/tinyxml2_vendor.git
version: galactic
status: maintained
tinyxml_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tinyxml_vendor-release.git
version: 0.8.2-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/tinyxml_vendor.git
version: galactic
status: maintained
tlsf:
doc:
type: git
url: https://github.com/ros2/tlsf.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tlsf-release.git
version: 0.5.2-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/tlsf.git
version: galactic
status: maintained
topic_tools:
doc:
type: git
url: https://github.com/ros-tooling/topic_tools.git
version: main
release:
packages:
- topic_tools
- topic_tools_interfaces
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/topic_tools-release.git
version: 1.0.0-1
source:
type: git
url: https://github.com/ros-tooling/topic_tools.git
version: main
status: developed
tracetools_analysis:
doc:
type: git
url: https://gitlab.com/ros-tracing/tracetools_analysis.git
version: galactic
release:
packages:
- ros2trace_analysis
- tracetools_analysis
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tracetools_analysis-release.git
version: 2.0.3-4
source:
type: git
url: https://gitlab.com/ros-tracing/tracetools_analysis.git
version: galactic
status: developed
transport_drivers:
doc:
type: git
url: https://github.com/ros-drivers/transport_drivers.git
version: main
release:
packages:
- asio_cmake_module
- io_context
- serial_driver
- udp_driver
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/transport_drivers-release.git
version: 1.1.1-1
source:
type: git
url: https://github.com/ros-drivers/transport_drivers.git
version: main
status: developed
turtlebot3:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/turtlebot3.git
version: galactic-devel
release:
packages:
- turtlebot3
- turtlebot3_bringup
- turtlebot3_cartographer
- turtlebot3_description
- turtlebot3_example
- turtlebot3_navigation2
- turtlebot3_node
- turtlebot3_teleop
tags:
release: release/galactic/{package}/{version}
url: https://github.com/robotis-ros2-release/turtlebot3-release.git
version: 2.1.2-2
source:
type: git
url: https://github.com/ROBOTIS-GIT/turtlebot3.git
version: galactic-devel
status: maintained
turtlebot3_msgs:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/turtlebot3_msgs.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/robotis-ros2-release/turtlebot3_msgs-release.git
version: 2.2.2-3
source:
type: git
url: https://github.com/ROBOTIS-GIT/turtlebot3_msgs.git
version: galactic-devel
status: developed
turtlebot3_simulations:
doc:
type: git
url: https://github.com/ROBOTIS-GIT/turtlebot3_simulations.git
version: galactic-devel
release:
packages:
- turtlebot3_fake_node
- turtlebot3_gazebo
- turtlebot3_simulations
tags:
release: release/galactic/{package}/{version}
url: https://github.com/robotis-ros2-release/turtlebot3_simulations-release.git
version: 2.2.4-2
source:
type: git
url: https://github.com/ROBOTIS-GIT/turtlebot3_simulations.git
version: galactic-devel
status: developed
turtlebot4:
doc:
type: git
url: https://github.com/turtlebot/turtlebot4.git
version: galactic
release:
packages:
- turtlebot4_description
- turtlebot4_msgs
- turtlebot4_navigation
- turtlebot4_node
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/turtlebot4-release.git
version: 0.1.2-1
source:
type: git
url: https://github.com/turtlebot/turtlebot4.git
version: galactic
status: developed
turtlebot4_desktop:
doc:
type: git
url: https://github.com/turtlebot/turtlebot4_desktop.git
version: galactic
release:
packages:
- turtlebot4_desktop
- turtlebot4_viz
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/turtlebot4_desktop-release.git
version: 0.1.0-1
source:
type: git
url: https://github.com/turtlebot/turtlebot4_desktop.git
version: galactic
status: developed
turtlebot4_examples:
doc:
type: git
url: https://github.com/turtlebot/turtlebot4_examples.git
version: galactic
release:
packages:
- turtlebot4_cpp_examples
- turtlebot4_examples
- turtlebot4_python_examples
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/turtlebot4_examples-release.git
version: 0.1.0-1
source:
type: git
url: https://github.com/turtlebot/turtlebot4_examples.git
version: galactic
status: developed
turtlebot4_robot:
doc:
type: git
url: https://github.com/turtlebot/turtlebot4_robot.git
version: galactic
release:
packages:
- turtlebot4_base
- turtlebot4_bringup
- turtlebot4_diagnostics
- turtlebot4_robot
- turtlebot4_tests
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/turtlebot4_robot-release.git
version: 0.1.3-1
source:
type: git
url: https://github.com/turtlebot/turtlebot4_robot.git
version: galactic
status: developed
turtlebot4_simulator:
doc:
type: git
url: https://github.com/turtlebot/turtlebot4_simulator.git
version: galactic
release:
packages:
- turtlebot4_ignition_bringup
- turtlebot4_ignition_gui_plugins
- turtlebot4_ignition_toolbox
- turtlebot4_simulator
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/turtlebot4_simulator-release.git
version: 0.1.1-1
source:
type: git
url: https://github.com/turtlebot/turtlebot4_simulator.git
version: galactic
status: developed
turtlebot4_tutorials:
doc:
type: git
url: https://github.com/turtlebot/turtlebot4_tutorials.git
version: galactic
release:
packages:
- turtlebot4_cpp_tutorials
- turtlebot4_python_tutorials
- turtlebot4_tutorials
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/turtlebot4_tutorials-release.git
version: 0.1.0-1
source:
type: git
url: https://github.com/turtlebot/turtlebot4_tutorials.git
version: galactic
status: developed
turtlesim:
doc:
type: git
url: https://github.com/ros/ros_tutorials.git
version: galactic-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros_tutorials-release.git
version: 1.3.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/ros_tutorials.git
version: galactic-devel
status: maintained
tvm_vendor:
doc:
type: git
url: https://github.com/autowarefoundation/tvm_vendor.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/tvm_vendor-release.git
version: 0.9.1-1
source:
type: git
url: https://github.com/autowarefoundation/tvm_vendor.git
version: main
status: maintained
twist_mux:
doc:
type: git
url: https://github.com/ros-teleop/twist_mux.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/twist_mux-release.git
version: 4.1.0-1
source:
type: git
url: https://github.com/ros-teleop/twist_mux.git
version: galactic
status: maintained
twist_stamper:
doc:
type: git
url: https://github.com/joshnewans/twist_stamper.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/twist_stamper-release.git
version: 0.0.3-1
source:
type: git
url: https://github.com/joshnewans/twist_stamper.git
version: main
status: maintained
ublox:
doc:
type: git
url: https://github.com/KumarRobotics/ublox.git
version: galactic-devel
release:
packages:
- ublox
- ublox_gps
- ublox_msgs
- ublox_serialization
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ublox-release.git
version: 2.2.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/KumarRobotics/ublox.git
version: galactic-devel
status: maintained
ublox_dgnss:
release:
packages:
- ublox_dgnss
- ublox_dgnss_node
- ublox_ubx_interfaces
- ublox_ubx_msgs
tags:
release: release/galactic/{package}/{version}
url: https://github.com/aussierobots/ublox_dgnss-release.git
version: 0.2.3-4
source:
type: git
url: https://github.com/aussierobots/ublox_dgnss.git
version: main
udp_msgs:
doc:
type: git
url: https://github.com/flynneva/udp_msgs.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/udp_msgs-release.git
version: 0.0.3-3
source:
type: git
url: https://github.com/flynneva/udp_msgs.git
version: main
status: maintained
uncrustify_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/uncrustify_vendor-release.git
version: 1.5.3-2
source:
type: git
url: https://github.com/ament/uncrustify_vendor.git
version: galactic
status: maintained
unique_identifier_msgs:
doc:
type: git
url: https://github.com/ros2/unique_identifier_msgs.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/unique_identifier_msgs-release.git
version: 2.2.1-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/unique_identifier_msgs.git
version: galactic
status: maintained
ur_client_library:
doc:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_Client_Library.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/UniversalRobots/Universal_Robots_Client_Library-release.git
version: 1.2.0-1
source:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_Client_Library.git
version: master
status: developed
ur_description:
doc:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_ROS2_Description.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ur_description-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_ROS2_Description.git
version: ros2
status: developed
ur_msgs:
doc:
type: git
url: https://github.com/ros-industrial/ur_msgs.git
version: foxy
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ur_msgs-release.git
version: 2.0.0-1
source:
type: git
url: https://github.com/ros-industrial/ur_msgs.git
version: foxy
status: developed
ur_robot_driver:
doc:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver.git
version: galactic
release:
packages:
- ur_bringup
- ur_calibration
- ur_controllers
- ur_dashboard_msgs
- ur_moveit_config
- ur_robot_driver
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/Universal_Robots_ROS2_Driver-release.git
version: 2.1.2-1
source:
type: git
url: https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver.git
version: galactic
status: developed
urdf:
doc:
type: git
url: https://github.com/ros2/urdf.git
version: galactic
release:
packages:
- urdf
- urdf_parser_plugin
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urdf-release.git
version: 2.5.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/urdf.git
version: galactic
status: maintained
urdf_parser_py:
doc:
type: git
url: https://github.com/ros/urdf_parser_py.git
version: ros2
release:
packages:
- urdfdom_py
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urdfdom_py-release.git
version: 1.1.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros/urdf_parser_py.git
version: ros2
status: maintained
urdf_tutorial:
doc:
type: git
url: https://github.com/ros/urdf_tutorial.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urdf_tutorial-release.git
version: 1.0.0-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/urdf_tutorial.git
version: ros2
status: maintained
urdfdom:
doc:
type: git
url: https://github.com/ros/urdfdom.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urdfdom-release.git
version: 2.3.5-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros/urdfdom.git
version: galactic
status: maintained
urdfdom_headers:
doc:
type: git
url: https://github.com/ros/urdfdom_headers.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urdfdom_headers-release.git
version: 1.0.5-3
source:
type: git
url: https://github.com/ros/urdfdom_headers.git
version: galactic
status: maintained
urg_c:
doc:
type: git
url: https://github.com/ros-drivers/urg_c.git
version: ros2-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urg_c-release.git
version: 1.0.4001-3
source:
test_pull_requests: true
type: git
url: https://github.com/ros-drivers/urg_c.git
version: ros2-devel
status: maintained
urg_node:
doc:
type: git
url: https://github.com/ros-drivers/urg_node.git
version: ros2-devel
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urg_node-release.git
version: 1.1.0-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros-drivers/urg_node.git
version: ros2-devel
status: maintained
urg_node_msgs:
doc:
type: git
url: https://github.com/ros-drivers/urg_node_msgs.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/urg_node_msgs-release.git
version: 1.0.1-5
source:
type: git
url: https://github.com/ros-drivers/urg_node_msgs.git
version: master
status: maintained
usb_cam:
doc:
type: git
url: https://github.com/ros-drivers/usb_cam.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros-gbp/usb_cam-release.git
version: 0.4.2-1
source:
type: git
url: https://github.com/ros-drivers/usb_cam.git
version: ros2
status: maintained
v4l2_camera:
doc:
type: git
url: https://gitlab.com/boldhearts/ros2_v4l2_camera.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/ros2_v4l2_camera-release.git
version: 0.4.0-2
source:
type: git
url: https://gitlab.com/boldhearts/ros2_v4l2_camera.git
version: galactic
status: developed
variants:
doc:
type: git
url: https://github.com/ros2/variants.git
version: galactic
release:
packages:
- desktop
- ros_base
- ros_core
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/variants-release.git
version: 0.9.3-2
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/variants.git
version: galactic
status: maintained
velodyne:
doc:
type: git
url: https://github.com/ros-drivers/velodyne.git
version: ros2
release:
packages:
- velodyne
- velodyne_driver
- velodyne_laserscan
- velodyne_msgs
- velodyne_pointcloud
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/velodyne-release.git
version: 2.3.0-1
source:
type: git
url: https://github.com/ros-drivers/velodyne.git
version: ros2
status: developed
velodyne_simulator:
doc:
type: git
url: https://bitbucket.org/DataspeedInc/velodyne_simulator.git
version: foxy-devel
release:
packages:
- velodyne_description
- velodyne_gazebo_plugins
- velodyne_simulator
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/velodyne_simulator-release.git
version: 2.0.3-1
source:
type: git
url: https://bitbucket.org/DataspeedInc/velodyne_simulator.git
version: foxy-devel
status: maintained
vision_msgs:
doc:
type: git
url: https://github.com/ros-perception/vision_msgs.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/vision_msgs-release.git
version: 3.0.2-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/vision_msgs.git
version: galactic
status: maintained
vision_msgs_layers:
doc:
type: git
url: https://github.com/ros-sports/vision_msgs_layers.git
version: galactic
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/vision_msgs_layers-release.git
version: 0.0.1-1
source:
type: git
url: https://github.com/ros-sports/vision_msgs_layers.git
version: galactic
status: developed
vision_opencv:
doc:
type: git
url: https://github.com/ros-perception/vision_opencv.git
version: galactic
release:
packages:
- cv_bridge
- image_geometry
- vision_opencv
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/vision_opencv-release.git
version: 3.1.3-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros-perception/vision_opencv.git
version: galactic
status: maintained
visp:
doc:
type: git
url: https://github.com/lagadic/visp.git
version: master
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/lagadic/visp-release.git
version: 3.5.0-3
source:
type: git
url: https://github.com/lagadic/visp.git
version: master
status: maintained
warehouse_ros:
doc:
type: git
url: https://github.com/ros-planning/warehouse_ros.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/warehouse_ros-release.git
version: 2.0.4-1
source:
type: git
url: https://github.com/ros-planning/warehouse_ros.git
version: ros2
status: maintained
warehouse_ros_mongo:
doc:
type: git
url: https://github.com/ros-planning/warehouse_ros_mongo.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/warehouse_ros_mongo-release.git
version: 2.0.3-1
source:
type: git
url: https://github.com/ros-planning/warehouse_ros_mongo.git
version: ros2
status: maintained
warehouse_ros_sqlite:
doc:
type: git
url: https://github.com/ros-planning/warehouse_ros_sqlite.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/moveit/warehouse_ros_sqlite-release.git
version: 1.0.2-1
source:
type: git
url: https://github.com/ros-planning/warehouse_ros_sqlite.git
version: ros2
status: maintained
webots_ros2:
doc:
type: git
url: https://github.com/cyberbotics/webots_ros2.git
version: master
release:
packages:
- webots_ros2
- webots_ros2_control
- webots_ros2_core
- webots_ros2_driver
- webots_ros2_epuck
- webots_ros2_importer
- webots_ros2_mavic
- webots_ros2_msgs
- webots_ros2_tesla
- webots_ros2_tests
- webots_ros2_tiago
- webots_ros2_turtlebot
- webots_ros2_universal_robot
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/webots_ros2-release.git
version: 2022.1.4-1
source:
test_pull_requests: true
type: git
url: https://github.com/cyberbotics/webots_ros2.git
version: master
status: maintained
xacro:
doc:
type: git
url: https://github.com/ros/xacro.git
version: ros2
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/xacro-release.git
version: 2.0.7-1
source:
type: git
url: https://github.com/ros/xacro.git
version: ros2
status: maintained
yaml_cpp_vendor:
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/ros2-gbp/yaml_cpp_vendor-release.git
version: 7.1.1-1
source:
test_pull_requests: true
type: git
url: https://github.com/ros2/yaml_cpp_vendor.git
version: galactic
status: maintained
zmqpp_vendor:
doc:
type: git
url: https://github.com/tier4/zmqpp_vendor.git
version: main
release:
tags:
release: release/galactic/{package}/{version}
url: https://github.com/tier4/zmqpp_vendor-release.git
version: 0.0.2-1
source:
type: git
url: https://github.com/tier4/zmqpp_vendor.git
version: main
status: developed
type: distribution
version: 2
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化